I own an academic license for Gurobi. I followed the guide, but ended up with a problem. The steps I went through are:
- downloaded the Gurobi .tar.gz
- extracted it in the /opt folder with the command
tar xvzf gurobi_installer.tar.gz
- a folder named "gurobi902" was created in the /opt folder after the extraction
- run the command
grbgetkey xxxxx xxxxx xxxxxx xxxxxx xxxxx
to activate the license - wrote the following lines in the .bashrc and .profile files
export GUROBI_HOME="/opt/gurobi902/linux64"
export PATH="${PATH}:${GUROBI_HOME}/bin"
export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${GUROBI_HOME}/lib"
- opened Eclipse and edited the build path of my project and added the external jar of gurobi.jar
When I run the java program in Eclipse I get the message
java.lang.UnsatisfiedLinkError: no gurobijni90 in java.library.path
My system has:
- Operating System: Manjaro Linux
- KDE Plasma Version: 5.18.5
- KDE Frameworks Version: 5.70.0
- Qt Version: 5.15.0
- Kernel Version: 4.19.126-1-MANJARO
- OS Type: 64-bit
How can I solve it? Thanks in advance for the help!