How
Contents
How#
How to pip install a library.#
To install a Python library from the Python Package index we use pip
by typing
the following at the command line.
Tip
$ python -m pip install <library>
For example to install ciw
a library used to study queuing systems:
$ python -m pip install ciw
Attention
Well documented libraries will always have installation instructions. It is recommended to read those before installing a library.