Update home authored by van Vliet's avatar van Vliet
......@@ -1843,3 +1843,18 @@ $HOME/.config/pip/pip.conf
[list]
format=columns
```
Useful commmands:
```
pip install packageName
pip uninstall packageName
pip search packageName
pip help
pip install --help
```
As a normal user you should always install a Python packages (when you are **not** running in a virtual Python environment) with the command:\
```
pip install --user
```