UMIACS Servers: Difference between revisions
Created page with "Notes on using UMIACS servers" |
No edit summary |
||
Line 1: | Line 1: | ||
Notes on using UMIACS servers | Notes on using UMIACS servers | ||
==Modules== | |||
Use modules to load programs you need to run.<br> | |||
;Notes | |||
* You can load modules in your <code>.bashrc</code> file | |||
<syntaxhighlight lang="bash"> | |||
# List loaded modules | |||
module list | |||
# Load a module | |||
module load [my_module] | |||
# List all available modules | |||
module avail | |||
</syntaxhighlight> | |||
==Python== | |||
Install anaconda as usual | |||
<syntaxhighlight lang="bash"> | |||
cd ~/Documents | |||
wget https://repo.anaconda.com/archive/Anaconda3-2019.10-Linux-x86_64.sh | |||
chmod u+x Anaconda3-2019.10-Linux-x86_64.sh | |||
./Anaconda3-2019.10-Linux-x86_64.sh | |||
</syntaxhighlight> | |||
Or you can load the Python 3 module | |||
<syntaxhighlight lang="bash"> | |||
module load Python3 | |||
</syntaxhighlight> |
Revision as of 20:54, 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
Python
Install anaconda as usual
cd ~/Documents
wget https://repo.anaconda.com/archive/Anaconda3-2019.10-Linux-x86_64.sh
chmod u+x Anaconda3-2019.10-Linux-x86_64.sh
./Anaconda3-2019.10-Linux-x86_64.sh
Or you can load the Python 3 module
module load Python3