How to run Gurobi throught Julia
To install Julia, we can download it from github git clone https://github.com/JuliaLang/julia.git cd julia sudo apt-get install build-essential libatomic1 python gfortran perl wget m4 cmake pkg-config make -j8 make install cd julia-* cd bin pwd Now, export the working directory to your .bashrc file export PATH="$(pwd)/julia:$PATH" Run julia and add JuMP (Julia for Mathematical Programming): Pkg.add("JuMP") WARNING: Base.Pkg is deprecated, run `using Pkg` instead Newer versions must use Pkg first as following: using Pkg Pkg.add("JuMP") Other option is install it from the tarball file: wget https://github.com/JuliaLang/julia/releases/download/v0.6.2/julia-0.6.2-full.tar.gz tar xzvf julia-0.6.2-full.tar.gz cd julia-0.6.2 make -j8 make install cd julia-* cd bin pwd Export to the bashrc file again and install the package: Pkg.add("JuMP") Pkg.add("Gurobi") Pkg.update() Maybe you can have issues to lo...