Installing thcolor¶
In order to run and tweak thcolor, you must first install it; this section will cover the need.
Installing thcolor using pip¶
To install thcolor, you can use pip with the following command:
python -m pip install thcolor
Some notes on this command:
On most Linux distributions, you can directly call
pip
(orpip3
on those where Python 2.x is still the default); I personnally prefer to call it through Python as a module.On Linux and other UNIX-like distributions where Python 2.x is still the default, when Python 3.x is installed, you must usually call it using
python3
instead ofpython
.On Microsoft Windows, the Python executable, when added to the PATH, goes by the name
py
instead ofpython
.
Installing thcolor from source¶
To install thcolor from source, you can use the following commands:
python ./setup.py install --system # or --user