Hi everyone,
My name is Bastien, and I’m a Master’s student in Business Engineering and Computer Science at the University of Liège.
As part of my thesis, I’m working on a Vehicle Routing Problem (VRP) that integrates robust optimization and decreasing rewards. To model and solve this, I’m using CPLEX and DOcplex within a Jupyter Notebook in an Anaconda environment.
However, I’ve run into an issue: I'm unable to go beyond 1,000 constraints, which is a problem since I’m still in the early stages of defining the model. From what I understand, this limit is imposed by the Community Edition of CPLEX, which was installed via:
pip install cplex
pip install docplex
I’ve since obtained an Academic license through the IBM Academic Initiative. However, I haven’t found a way to link the full licensed version to my Anaconda environment. I tried uninstalling the pip-installed version and instead running:
cd "C:\Program Files\IBM\ILOG\CPLEX_Studio2212\python\cplex"
pip install
---
set CPLEX_STUDIO_DIR2212="C:\Program Files\IBM\ILOG\CPLEX_Studio2212"
set PATH=%CPLEX_STUDIO_DIR2212%\cplex\bin\x64_win64;%PATH%
---
Unfortunately, there is no \python directory in version 22.1.2, so the above path doesn’t work.
Does anyone know how to correctly install and link the licensed Academic version of CPLEX to an Anaconda environment when the python folder is missing in the installation directory?
Any help would be greatly appreciated!
Thanks,
Bastien