Environment Modules: Difference between revisions

From HPCwiki
Jump to navigation Jump to search
No edit summary
Line 10: Line 10:


== External links ==
== External links ==
http://modules.sourceforge.net
* http://modules.sourceforge.net
http://www.admin-magazine.com/HPC/Articles/Environment-Modules
* http://www.admin-magazine.com/HPC/Articles/Environment-Modules

Revision as of 21:47, 29 November 2013

Loading modules

In order for this script to run, the first thing that is needed is that Python3, which is not the default Python version on the cluster, is load into your environment. Availability of (different versions of) software can be checked by the following command:

 module avail

In the list you should note that python3 is indeed available to be loaded, which then can be loaded with the following command:

 module load python/3.3.3

See also

External links