Update home authored by van Vliet's avatar van Vliet
......@@ -1828,3 +1828,18 @@ module add system/python/2.7.17
module add system/python/3.7.6
module add system/python/3.8.1
```
### Installing Python packages
Some Python packages are already installed on the cluster and you can load/use them with the "module load" command.
If you need an extra Python package you can use the **pip3** command to install the Python package.
#### pip
For Python version 3 you should use the **pip3** command.
For Python version 2 you should use the **pip2** command.
Edit first your pip config file:
```
$HOME/.config/pip/pip.conf
[list]
format=columns
```