UMIACS Servers: Difference between revisions
Line 27: | Line 27: | ||
==Python== | ==Python== | ||
Do not install anaconda. You will run out of space.<br> | |||
Load the Python 3 module | |||
< | |||
<syntaxhighlight lang="bash"> | <syntaxhighlight lang="bash"> | ||
module load Python3 | module load Python3 | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 21:12, 26 December 2019
Notes on using UMIACS servers
Modules
Use modules to load programs you need to run.
- Notes
- You can load modules in your
.bashrc
file
# List loaded modules
module list
# Load a module
module load [my_module]
# List all available modules
module avail
Some useful modules in my .bashrc
file
module load tmux
module load cuda/10.0.130
module load cudnn/v7.5.0
Python
Do not install anaconda. You will run out of space.
Load the Python 3 module
module load Python3