Closed wawa0210 closed 4 months ago
Could you provide more details of how you install the openagi?
Could you provide more details of how you install the openagi?
I installed it according to this readme --> https://github.com/agiresearch/AIOS
cd ../OpenAGI
pip install -e .
I find this issue is due to the pyproject.toml file that we used has some conflicts with the setup.py in the OpenAGI package. I am gonna fix this.
The installation from pip install from pypi (pip install pyopenagi) and locally (cd OpenAGI and pip install -e .) should be fixed now.
The installation from pip install from pypi (pip install pyopenagi) and locally (cd OpenAGI and pip install -e .) should be fixed now.
I installed pyopenagi==0.0.3
via pip, but the code still reports Import "pyopenagi.src.agents.agent_factory" could not be resolved
and nothing found in virtualenv
The file size on pypi is probably incorrect --> https://pypi.org/project/pyopenagi/#files, currently only 3.5KB
I see, the pip install -e . should be fixed now. Maybe it is something wrong during packgin with pyproject.toml, so the PyPI version is incorrect. I will check the problem and fix that.
The PyPI version is updated. Please have a check of whether it can work now.
When I installed the demo according to https://github.com/agiresearch/AIOS readme, when I ran the real demo ->
python main.py --llm_name ollama/qwen:7b
, an error message appeared: ModuleNotFoundError: No module named 'openagi',But I was able to find the corresponding module through
pip show openagi
, which was very confusing