I am trying to run this example given in gurobi's example model. I am using python 3.5 with gurobi 7.0.2. When I run the code, I get the following error.
Traceback (most recent call last):
File "test.py", line 1, in <module>
from gurobipy import *
File "/if5/wua4nw/anaconda3/lib/python3.5/site-packages/gurobipy/__init__.py", line 1, in <module>
from .gurobipy import *
ImportError: libgurobi70.so: cannot open shared object file: No such file or directory
I have Gurobi installed at /if5/wua4nw/gurobi702
and I can see the required file libgurobi70.so
at /if5/wua4nw/gurobi702/linux64/lib/libgurobi70.so
. I am using Anaconda3 by the way.
I have seen this discussion but couldn't solve the problem yet. Can anyone shed some light so that I can solve the problem?