How to Install Colorama, Python
Installing with pip is almost always the way to go. It will handle downloading the package for you, as well as any dependencies. If you don't have pip, see http://www.pip-installer.org/en/latest/installing.html
Then
pip install colorama
or
sudo pip install colorama
Ba-boom! Done.
Python packages are installed using setup.py by entering the following command from a command line:
python setup.py install
I just a weird problem with awscli
and colorama
. Searching for an answer, I came here. The solution was:
$ sudo -H pip uninstall colorama
$ sudo -H pip install colorama