Any input on WHERE in flow one should install the agentops calls ?
import agentops
agentops.init()
I tried in different places and always got an error saying “ModuleNotFoundError: No module named ‘agentops’”.
I had the same issue.
The problem was the virtual environmet created when crewai install.
Solved using a complete new virtal environment with python -m venv venv ant then installing everyhting needed in this venv using pip install. It include pip install crewai.
I know this is not the instructions in crewai official documentation but it worked!
hope it helps