Main Navigation

Secondary Navigation

Page Contents

Contents

Using Pip to install Python Modules

The package installer pip may be used to install python packages from available indexes. Much of the documentation refers to using pip on a desktop system with administration privileges like
sudo apt install package
This is of course not possible on Elwetritsch. Instead you should use the user context of pip:
pip install --user SomePackage
or in case of a C++ package of similar:
pip3 install --user SomePackage