Python Packages

Description

To list installed Python packages:

# module avail Python
# module load Python/x.x.x
## Check which packages that are available, and versions
#
pip list

User-installed packages

# module avail Python
# module load Python/x.x.x
## Check which packages that are available, and versions
# pip install <package-name> --user
## or, in the package directory
# python setup.py install --user