Hello,
I am trying to install the Gurobi Python interface. This command seems to work in a bash shell, after I uploaded setup.py from my computer:
python setup.py install --user
running install
running build
running build_py
running install_lib
running install_egg_info
Removing /home/ksattar/.local/lib/python2.7/site-packages/gurobipy-6.0.4.egg-info
Writing /home/ksattar/.local/lib/python2.7/site-packages/gurobipy-6.0.4.egg-info
Then within iPython, I try doing "import gurobipy":
ImportError Traceback (most recent call last)
'<ipython-input-2-1a30be95fe9a>' in <module>()
----> 1 import gurobipy
/home/ksattar/.local/lib/python2.7/site-packages/gurobipy/init.py in <module>()
----> 1 from .gurobipy import *
ImportError: No module named gurobipy
Does anyone know what might be going wrong?
Thank you,
-Kaivan