beebot
beebot copied to clipboard
Unable to find installation candidates for agent-protocol
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 I had the same issue and removed the agbenchmark dependency from pyproject.toml to resolve it
@unitythemaker I had the same issue and removed the agbenchmark dependency from pyproject.toml to resolve it
Thank you, it's resolved.