I own an academic license for Gurobi. I followed the guide, but ended up with a problem. The steps I went through are:
tar xvzf gurobi_installer.tar.gz
grbgetkey xxxxx xxxxx xxxxxx xxxxxx xxxxx
to activate the licenseexport GUROBI_HOME="/opt/gurobi902/linux64"
export PATH="${PATH}:${GUROBI_HOME}/bin"
export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${GUROBI_HOME}/lib"
When I run the java program in Eclipse I get the message
java.lang.UnsatisfiedLinkError: no gurobijni90 in java.library.path
My system has:
How can I solve it? Thanks in advance for the help!
I write what worked for me.
/opt
all the Gurobi installation foldersIf it still doesn’t work, run:
sudo ln -s /opt/gurobi951/linux64/lib/libgurobi95.so /usr/lib
sudo ln -s /opt/gurobi951/linux64/lib/libGurobiJni95.so /usr/lib
sudo ldconfig