install colorama python module
Matthew Barrera
I import colorama in python code and I have below error :
Traceback (most recent call last):
File "stevoku.py", line 5, in <module>
import colorama
ImportError: No module named coloramaand I install colorama and I too this error. I install colorama :
apt-get install python-colorama 0 2 Answers
Install it using pip
sudo pip install coloramaIf you don't have pip read How to install pip for python 3 in ubuntu 12.04 LTS
Another way is to download colorama module from here.
Now extract the package
cd colorama*Then run
python setup.py install 2 Another possible solution:
Install it by using:
sudo apt-get install python-coloramaYou need sudo if you want to use apt-get.