I have installed gurobi
, however it does not get reflected when importing.
I get the following error:
No module name gurobi
I have installed gurobi
, however it does not get reflected when importing.
I get the following error:
No module name gurobi
You didn't write which API you are using. If you are using python, you should use import gurobipy
and not gurobi
. You also need to setup some environment variables (GUROBI_HOME
, PATH
and LD_LIBRARY_PATH
). See Gurobi quick start guide.