How to use Python packages on PyPI (e.g. Theano)

You can install modules into your home directory (Example: Theano case)

$ module load python-extension/2.7
$ pip install --user theano

If you want to use modules from your compute job, add following lines into your job script before python executables.

. /etc/profile.d/modules.sh
module load python-extension/2.7

related URL
How to install numpy, mpi4py, chainer etc. using python/3.6.5