Installing Custom Software
Users can install software in their home or project directories.
Steps
- Load necessary compilers/tools (e.g.,
module load gcc/11.2
). - Download the software source (e.g., via
wget
). - Compile and install in
/home/$USER/software
:./configure --prefix=/home/$USER/software/myapp
make && make install - Add to your $PATH:
export PATH=$PATH:/home/$USER/software/myapp/bin
Notes:
Avoid installing in system directories. Contact if you need help