preloader
  • Gurobi Installation on HSUper

This guide provides detailed instructions on installing the Gurobi software on HSUper, including starting a Gurobi Interactive Shell.

Gurobi Installation on HSUper

Step 1: Obtain the Gurobi Software

Step 2: Install Gurobi Software on HSUper

  • Copy the downloaded Gurobi software to HSUper without unpacking it beforehand and log in to HSUper. This could be done via:
    • The Web Browser access to HSUper
    • MobaXterm (on Windows)
    • The scp and ssh commands in your terminal
  • Unpack the Gurobi software by running tar -xvzf gurobi12.0.2_linux64.tar.gz or equivalent in the terminal, which creates a new folder in this case named gurobi1202.
  • Download and rename the license file from the HSU Intranet from gurobilic.sec to gurobi.lic and copy it to the gurobi1202 folder.
  • Add the following content to the end of your ~/.bashrc file
export GUROBI_HOME="$HOME/gurobi1202/linux64"
export PATH="${PATH}:${GUROBI_HOME}/bin"
export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${GUROBI_HOME}/lib"
export GRB_LICENSE_FILE="$HOME/gurobi1202/gurobi.lic"

to install the Gurobi software locally in your actual home folder instead of /opt.