Reputation: 163
I am trying to install scipy package for python 2.7 in windows, The process i followed is as follows:
downloaded a whl file scipy-0.17.1-cp27-cp27m-win32.whl from http://www.lfd.uci.edu/~gohlke/pythonlibs/#scipy
tried to install by pip install scipy-0.17.1-cp27-cp27m-win32.whl
error : Requirement 'scipy-0.15.1-cp27-none-win32.whl' looks like a filename but the file does not exist scipy-0.15.1-cp27-none-win32.whl is not a supported wheelon this platform.
then tried to install by pip install file_location\scipy-0.17.1-cp27-cp27m-win32.whl.
error displayed :scipy-0.15.1-cp27-none-win32.whl is not a supported wheel on this platform.
Also i have already upgraded my pip command. Can anyone suggest me out some valid solutions?
Upvotes: 0
Views: 2793
Reputation: 20206
I Think the issue in Python interpreter variant 32 or 64.. if your python is 32-bit then use scipy-0.17.1-cp27-cp27m-win32.whl
otherwise if your python is 64Bit then try scipy-0.17.1-cp27-cp27m-win_amd64.whl
Upvotes: 0