How to install cvxopt on on windows 10 on python 3.6

前端 未结 2 1746
天命终不由人
天命终不由人 2021-02-04 13:48

How do I install cvxopt on windows 10 on python 3.6?

When running

conda install cvxopt

Fetching package metadata ...........
Solving package specificat         


        
2条回答
  •  粉色の甜心
    2021-02-04 14:38

    The library can be installed directly using pip

    (qiskit) C:\Python37>pip install --upgrade --force-reinstall cvxopt
    

    It downloads the below wheels

    cvxopt-1.2.5-cp37-cp37m-win_amd64.whl (822 kB)
    mkl-2019.0-py2.py3-none-win_amd64.whl (224.1 MB)
    
    Successfully installed cvxopt-1.2.5 intel-openmp-2019.0 mkl-2019.0
    

    You may have to set the Python path as well in the environment variable to get it working!

提交回复
热议问题