I am using python 3.5 and I am trying to install NumPy, but when I try to install from the command line using the command: pip install numpy
I get a lot of errors. The main error, although it seems to be at the end: error: Could not find vcvarsall.bat
I also tried downloading numpy binaries from http://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy and installing using the command: pip install numpy-1.10.4 + mkl-cp35 -cp35m-win_amd64.whl
But I get an error: numpy-1.10.4 + mkl-cp35-cp35m-win_amd64.whl does not support the wheel on this platform.
Then I found the file numpy-1.10.2-win32-superpack-python3.4.exe here https://sourceforge.net/projects/numpy/files/NumPy/1.10.2/ , but when I try to run I get a message an error requiring Python version 3.4.
I looked and can not find the installer for python 3.5.exe, do I need to remove python 3.5 and install 3.4 instead? Or does it install numpy for Python 3.5 anyway?
I am using Windows 10/64 bit.
source share