OpenBMB / ChatDev

Create Customized Software using Natural Language Idea (through LLM-powered Multi-Agent Collaboration)
https://arxiv.org/abs/2307.07924
Apache License 2.0
25.29k stars 3.17k forks source link

No module named 'tenacity' #365

Closed SanketBaviskar closed 6 months ago

SanketBaviskar commented 6 months ago

Traceback (most recent call last): File "F:\Projects\ChatDev\run.py", line 19, in from camel.typing import ModelType File "F:\Projects\ChatDev\camel__init.py", line 14, in import camel.agents File "F:\Projects\ChatDev\camel\agents\init__.py", line 15, in
from .chat_agent import ChatAgent File "F:\Projects\ChatDev\camel\agents\chat_agent.py", line 17, in
from tenacity import retry ModuleNotFoundError: No module named 'tenacity'

I got this error not sure what to do

NA-Wen commented 6 months ago

It seems there might be an issue with your environment configuration. To resolve this, consider running pip install -r requirements.txt (for Windows) orpip3 install -r requirements.txt (for macOS or Linux) to install all the necessary packages. This command will ensure that your environment is properly set up with the required dependencies. For detailed instructions on setting up your environment, you can refer to our tutorial.