mirror of
https://github.com/Shubhamsaboo/awesome-llm-apps.git
synced 2026-03-11 17:48:31 -05:00
ModuleNotFoundError: No module named 'agno.agents' #38
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @metaverse-sherpa on GitHub (Mar 6, 2025).
Performed a clean git clone and followed the steps exactly in the README. Tried troubleshooting with DeepSeek, but to no avail. Does this require that some of your other packages are also running?
awesome-llm-apps/ai_agent_tutorials/ai_investment_agent/investment_agent.py", line 3, in
from agno.agents import Agent
@Laurenneds commented on GitHub (Mar 15, 2025):
I believe I am having a similar issue:
ModuleNotFoundError: No module named 'agno'
Traceback:
File "/opt/anaconda3/lib/python3.12/site-packages/streamlit/runtime/scriptrunner/exec_code.py", line 85, in exec_func_with_error_handling
result = func()
^^^^^^
File "/opt/anaconda3/lib/python3.12/site-packages/streamlit/runtime/scriptrunner/script_runner.py", line 576, in code_to_exec
exec(code, module.dict)
File "/Users/laurenne/Documents/Python Programs/awesome-llm-apps/ai_agent_tutorials/ai_travel_agent/travel_agent.py", line 3, in
from agno.agent import Agent
@AssistBeinasco commented on GitHub (Mar 17, 2025):
not an expert, but a quick Google search led me to this Agno which seems to be what you are looking for?
@Madhuvod commented on GitHub (Mar 17, 2025):
@metaverse-sherpa @AssistBeinasco @Laurenneds sorry for the delayed response,
the bug is now fixed - its due to a change in the Agno Agent Framework - which is now resolved.
the pr of that is: https://github.com/Shubhamsaboo/awesome-llm-apps/pull/146
it'll be merged asap, look into the pr for the working code
thanks!
@Laurenneds commented on GitHub (Mar 17, 2025):
Are you also able to fix for the travel agent? I am just realizing the previous person was working with the investment agent. Thank you!
@Madhuvod commented on GitHub (Mar 17, 2025):
yes travel agent is fixed too - https://github.com/Shubhamsaboo/awesome-llm-apps/pull/147
@Shubhamsaboo commented on GitHub (Mar 18, 2025):
Thank you both for fixing!