skip to main content

Python

By default, all our systems have the default Python that came with the operating system. This will work for simple scripts.

Users that need iPython or additional modules should load the Anaconda Python module:

module load python

Anaconda provides NumPy, SciPy, matplotlib, PANDAS, and many other packages.

Increasingly, Anaconda is also the easiest way to install many software packages and libraries.

To install Anaconda packages, create an environment for a specific purpose and install all the needed packages inside the environment:

  1. conda create --name name_of_environment
  2. source activate name_of_environment
  3. conda install package_names