Skip to content Skip to sidebar Skip to footer

Installing Glpk Cvxopt With Conda

I have set up an environment where all packages are managed by conda (even for gcc). What i want to do is to install, cvxopt with GLPK support: CVXOPT_BUILD_GLPK=1 pip install cvxo

Solution 1:

I resolve my issue with:

conda install -c conda-forge glpk=4.60
conda install -c conda-forge cvxopt=1.1.8

Basically, we would need use the consistent condo-forge's everything. e.g. their glpk and cvxopt.

Post a Comment for "Installing Glpk Cvxopt With Conda"