beebot icon indicating copy to clipboard operation
beebot copied to clipboard

Unable to find installation candidates for agent-protocol

Open unitythemaker opened this issue 2 years ago • 2 comments

I am getting the following error while testing out beebot. I have run the ./setup.sh script after getting into venv and got this:

(beebot) unitythemaker@blazingfast ~/TMP/beebot (main) [1]
❯ poetry install
Installing dependencies from lock file

Package operations: 19 installs, 0 updates, 0 removals

  • Installing agent-protocol (0.2.4): Failed

  RuntimeError

  Unable to find installation candidates for agent-protocol (0.2.4)

  at lib/python3.11/site-packages/poetry/installation/chooser.py:73 in choose_for
       69│ 
       70│             links.append(link)
       71│ 
       72│         if not links:
    →  73│             raise RuntimeError(f"Unable to find installation candidates for {package}")
       74│ 
       75│         # Get the best link
       76│         chosen = max(links, key=lambda link: self._sort_key(package, link))
       77│ 

  • Installing agent-protocol-client (0.2.2): Failed

  RuntimeError

  Unable to find installation candidates for agent-protocol-client (0.2.2)

  at lib/python3.11/site-packages/poetry/installation/chooser.py:73 in choose_for
       69│ 
       70│             links.append(link)
       71│ 
       72│         if not links:
    →  73│             raise RuntimeError(f"Unable to find installation candidates for {package}")
       74│ 
       75│         # Get the best link
       76│         chosen = max(links, key=lambda link: self._sort_key(package, link))
       77│ 

unitythemaker avatar Sep 18 '23 21:09 unitythemaker

@unitythemaker I had the same issue and removed the agbenchmark dependency from pyproject.toml to resolve it

jon-1 avatar Sep 21 '23 02:09 jon-1

@unitythemaker I had the same issue and removed the agbenchmark dependency from pyproject.toml to resolve it

Thank you, it's resolved.

unitythemaker avatar Sep 21 '23 03:09 unitythemaker