參考:
Ubuntu 14.04 上安裝 Gurobi
1.在gurobi上創建一個賬戶,並登陸;
2.從gurobi optimizer上下載合適的版本,解壓。
3.修改系統配置文件:
$ vim ~/.bashrc
添加:
export GUROBI_HOME="/PATH/TO/gurobi702/linux64"
export PATH="${PATH}:${GUROBI_HOME}/bin"
export LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${GUROBI_HOME}/lib"
export GRB_LICENSE_FILE="/opt/gurobi/gurobi.lic"
注意,請將上面的路徑GUROBI_HOME="/PATH/TO/gurobi702/linux64"進行修改,修改為存放gurobi的位置。
4.更新配置:
$ source ~/.bashrc
5.訪問:license來獲取許可證;
6.點擊顯示的一個許可證,找到以下信息:
To install this license on a computer where Gurobi Optimizer is installed, copy and paste the following command to the Start/Run menu (Windows only) or a command/terminal prompt (any system):
grbgetkey xxxxxxxxxxxxxx
復制以上信息;
7.進入linux64/bin/,添加許可證:
$ cd gurobi702/linux64/bin
$ grbgetkey xxxxxxxxxxxxxx
可以在這個過程中選擇許可證的路徑,不過需要修改~/.bashrc中的對應信息,即GRB_LICENSE_FILE。這里選擇默認。
8.測試:
$ gurobi.sh
將會出現“Gurobi Interactive Shell”信息,並且出現命令行"gurobi>"。
至此安裝完成。
2017.8
