User Tools

Site Tools


cluster:software

This is an old revision of the document!


Cluster Software

The list of currently installed software on the cluster. If you wish to have additional software installed, please email econcluster@umd.edu.

Currently updating to reflect new OS refresh. –2024/11/11 bpmcln

Software Version Terminal Command
GCC 11.4.1 gcc
Matlab R2023a matlab
Python 3.9 python
R 4.4.2 R
Stata 18 MP8 stata-mp

Python

To run a pre-written python script, type

python script.py

Installing Libraries

To install a library that doesn't come with the initial installation, you first need to create a virtual environment (where $NAME is what you choose to name your virtual environment)

python3 -m venv $NAME

after creating, activate the environment

source environment_name/bin/activate

(you should now see the environment on the far left of the terminal line). After that, you can simply install any library using pip from the command line

pip install pandas
cluster/software.1731357715.txt.gz · Last modified: 2024/11/11 20:41 (external edit)