2

Please suggest step by step method to install cvxopt on Windows7 64 bit machine for python version 3.5. I'm really facing hard time to install it. enter image description here

Above is the error i'm getting.

After doing : conda install -c omnia cvxopt=1.1.8 on cmd,I am getting below error: enter image description here

Nikita Gupta
  • 495
  • 9
  • 24

1 Answers1

0

I suppose you tried something like pip install cvxopt which will resolve to compile from sources which is sometimes kind of trouble on windows depending on your setup (compilers, build-tools, ...).

As you are already using Anaconda i recommend using builds of others.

conda install -c omnia cvxopt=1.1.8

The link suggests that it's the most recent version and supporting win64.

sascha
  • 32,238
  • 6
  • 68
  • 110