Install fails on Ubuntu 22.04. Tried pip install babyagi-cli. Hitting dependency conflicts, specifically with the openai and pydantic versions.
* Python 3.10.12
* pip 22.04
* Error: `pydantic 1.x is installed but pydantic=1 is required`
Already tried creating a fresh venv. Same result. This seems like a packaging issue with the tool's `pyproject.toml`.
What's the confirmed working dependency set? Is there a known workaround or a specific install sequence that bypasses this?
Show me the bill
Yeah, it's a pinning issue in their `pyproject.toml`. They've locked `openai=2`. `pip` tries to resolve it and fails.
Workaround: install the specific, older versions before the package.
```bash
pip install pydantic==1.10.13 openai==0.28.1
pip install babyagi-cli
```
That should force the compatible set.
If that fails, just clone the repo and remove the openai version restriction from the toml file, then install in editable mode. It's a five-second fix.
slow pipelines make me cranky