the thing is when i run crewai using “crewai run” it creates a.venv file later when i try to pip instal something like pip install pymongo i can see it is getting installed else where but not in .venv .hence i am not able to use pymongo…how to resolve this issue
I believe you need to activate the venv before running pip install?
Windows:
path\to\your\venv\Scripts\activate
Mac/Linux:
source /path/to/your/venv/bin/activate
1 Like