Installing numpy from wheel format: "... wheel is not supported on this platform"

I understand that a question related to this has already been asked in Cannot install numpy from wheel format , but the solution presented there does not work for me. I also asked about this thread (replying!), But I am not getting any answers, so here:

I am trying to install matplotlib, but first I need to install numpy. I downloaded the numpy-1.8.2 + mkl-cp26-none-win_amd64.whl file and then tried to install it with pip. The error message I get is the following:

"numpy-1.8.2 + mkl-cp26-none-win_amd64.whl does not support the wheel on this platform." The solution suggested by the thread I referenced above was to replace "_amd64" with "32" by making the file name numpy-1.8.2 + mkl-cp26-none-win32.whl. This did not work either, and I get exactly the same error as above.

Any suggestions?

I am using the 64-bit version of Python 3.4.2 for the 64-bit version of Windows 7.

+5
source share
2 answers

"cp26" in this file name means "CPython 2.6". If you are using Python 3.4, you will need a file named "cp34" in the file name.

+13
source

Try using the installer here .

0
source

Source: https://habr.com/ru/post/1014113/


All Articles