I created a new virtual environment:
$ virtualenv --no-site-packages venv --python=python3.2
Then I activate the virtual environment and install the packages:
$ source venv/bin/activate
$ pip install termcolor
$ python -m termcolor
It all works great. Then I install my own project called Hermes, which uses termcolor:
$ python setup.py install
But when I run the executable that is installed in the virtualenv bin directory, I get an error message:
ImportError: no module named termcolor
How to install termcolor?
source
share