rhaskett
rhaskett

Reputation: 1962

Conda Not Installing Latest Version

I'm installing cvxpy from cvxgrp. Looking a the link it clearly shows version 1.01 for win-64.

However when I go to run the install

conda install -c cvxgrp cvxpy

it downloads and installs "cvxpy-0.4.10". Updating "all" does not seem to help.

I checked conda info and it shows "platform : win-64".

conda info

Is there a conflict? How can I get the latest version?

Upvotes: 2

Views: 999

Answers (1)

Ray
Ray

Reputation: 4671

If you look at the list of files for version 1.01, you'll see that the win-64 build is only for Python 2.7. The installation instructions seem to suggest that you should use pip to install on Windows if you're using Python 3.

Upvotes: 1

Related Questions