Crewai_tool issuses import

(ai-agents) (base) jorger@Papi-Jorge:~/travel-agent/Ai_trip$ crewai chat

Starting a conversation with the Crew
Type 'exit' or Ctrl+C to quit.

Traceback (most recent call last):
  File "/home/jorger/miniconda3/lib/python3.11/site-packages/crewai/cli/crew_chat.py", line 352, in load_crew_and_name
    crew_module = __import__(crew_module_name, fromlist=[crew_class_name])
                  ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/home/jorger/travel-agent/Ai_trip/src/TripCrew/crew.py", line 1, in <module>
    from crewai_tools import SerperDevTool, ScrapeWebsiteTool
ModuleNotFoundError: No module named 'crewai_tools'

when i attempt to start a crewai chat i get a import error for crewai_tools.

But i know for a matter a fact its avaible because when i run it normally it doesn’t work

1 Like

I’m getting the same…what’ sthe update???

@Jorge_Rocha, what version of crewai and crewai-tools are you running?

you can check it using this command:

pip freeze | grep crewai
1 Like

im running 0.100.0
(base) jorger@Papi-Jorge:~/travel-agent/Ai_trip$ pip freeze | grep crewai
crewai==0.100.0

this is the list of dependencies i have
dependencies = [
“pydantic<3.0.0,>=2.10.2”,
“loguru<1.0.0,>=0.7.2”,
“pyyaml<7.0.0,>=6.0.2”,
“googlemaps<5.0.0,>=4.10.0”,
“requests<3.0.0,>=2.32.3”,
“config<1.0.0,>=0.5.1”,
“google-generativeai<1.0.0,>=0.8.4”,
“pydantic-settings>=2.7.1”,
“agentops>=0.3.26”,
“crewai[tools]>=0.100.0”,
]

Can you share the repo of your code?