muellerberndt / mini-agi

MiniAGI is a simple general-purpose autonomous agent based on the OpenAI API.
MIT License
2.81k stars 292 forks source link

ModuleNotFoundError: No module named 'dotenv' #65

Open AgimaFR opened 1 year ago

AgimaFR commented 1 year ago

Error message on first launch after installation by following the instructions

Traceback (most recent call last):
  File "/Users/laurents/Documents/mini-agi/miniagi.py", line 16, in <module>
    from dotenv import load_dotenv
ModuleNotFoundError: No module named 'dotenv'
Rafiuldevaccount commented 3 weeks ago

It looks like the dotenv module isn’t installed. You can fix this by opening you command shell and running:

pip install dotenv

Make sure your virtual environment is activated if you’re using one. Let me know if you need more help!