mikeckennedy/mongodb-quickstart-course

No module named 'colorama'

jbrandes opened this issue · 1 comments

I am trying to run your snakebnb course but it won't load past section 4 lecture nine due to this error:

ile "/home/jbrandes/mongodb-quickstart-course/src/snake_bnb/src/program.py", line 1, in
from colorama import Fore
ModuleNotFoundError: No module named 'colorama'

Hi,

There are a number of dependencies for this project (most notably pymongo for talking with MongoDB, but also colorama). To fix this, you'll need to install them via the command:

pip3 install -r requirements.txt

In the root folder. That'll fix it.