Reputation: 1511
I downloaded the cplex studio 12.8 with a student licence and try to connect it with pulp in python. Even though there are some people on stack that also had problems with setting cplex up in python, the answers could not help me. My cplex sub-directories only include folders that are called 'example'. No setup.py file is included. This is how the directories look like:
And within the python directory:
Within the examples file there are only example problems.
Did I install Cplex studio correctly? How can I setup cplex within pulp?
Upvotes: 1
Views: 758
Reputation: 4465
What is the full path of the examples
directory you mentioned at the end? I suspect this is under your user directory (the installer makes a copy of the examples in this location for your convenience). The setup.py
file is installed in the version specific sub-directories (i.e., directories named 2.7
, 3.5
, and 3.6
) under the following location by default: C:\Program Files\IBM\ILOG\CPLEX_Studio128\cplex\python
.
Upvotes: 1