alipay / agentUniverse

agentUniverse is a LLM multi-agent framework that allows developers to easily build multi-agent applications.
Apache License 2.0
572 stars 66 forks source link

ModuleNotFoundError: No module named 'agentuniverse' #55

Closed LittleEnough closed 1 month ago

LittleEnough commented 1 month ago

hi, When I followed the document:https://github.com/alipay/agentUniverse/blob/master/docs/guidebook/en/1_3_Quick_Start.md step by step , I encountered an error: ModuleNotFoundError: No module named 'agentuniverse'

python3 server_application.py Traceback (most recent call last): File "/opt/agentUniverse/sample_standard_app/app/bootstrap/server_application.py", line 8, in from agentuniverse.agent_serve.web.web_booster import start_web_server ModuleNotFoundError: No module named 'agentuniverse'

Maybe I miss any key settings or something?

LandJerry commented 1 month ago

hi, When I followed the document:https://github.com/alipay/agentUniverse/blob/master/docs/guidebook/en/1_3_Quick_Start.md step by step , I encountered an error: ModuleNotFoundError: No module named 'agentuniverse'

python3 server_application.py Traceback (most recent call last): File "/opt/agentUniverse/sample_standard_app/app/bootstrap/server_application.py", line 8, in from agentuniverse.agent_serve.web.web_booster import start_web_server ModuleNotFoundError: No module named 'agentuniverse'

Maybe I miss any key settings or something?

The agentUniverse is not installed; you can try using the pip install command in your env.

pip install agentUniverse