Reputation: 33
I've been struggling for the past two days with SciPy. I'm installing it at work on a fresh new windows 10 build (yeah I know...). Python 64 installed, everything running smoothly but can"t find any way to install SciPy.
I've downloaded the wheels from here, I've tried scipy-0.19.0-cp36-cp36m-win32.whl and scipy-0.19.0-cp36-cp36m-win_amd64.whl but it always comes up with the same error (tried pip3 and pip):
$ pip3 install scipy-0.19.0-cp36-cp36m-win_amd64.whl
scipy-0.19.0-cp36-cp36m-win_amd64.whl is not a supported wheel on this platform.
Any idea? I've tried the pip updates, python updates and nothing seems to work.
Thank you for your help!
Upvotes: 2
Views: 1076
Reputation: 653
Ensure compatibility between your python version and the wheel file. For the wheel file, this is denoted by cpxx. For example, cp35 is for python3.5
Upvotes: 5