Error occurred while installing numpy library
Answered
Created a python project in PyCharm
From the menu I selected
File | Settings | Project Interpreter
I attempted to install numpy.
Error occurred when installing package 'numpy'.
Executed command:
pip install --user numpy==1.11.2
Error occurred:
error:
Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools":
http://landinghub.visualstudio.com/visual-cpp-build-tools
------
Question: Is there an easy way to resolve this error
without having to build numpy using Microsoft Visual C++ 14.0?
Please sign in to leave a comment.
Please try to install `numpy` for your project interpreter from the Terminal. Do you have the same error? If so, please check http://stackoverflow.com/questions/28251314/error-microsoft-visual-c-10-0-is-required-unable-to-find-vcvarsall-bat to find possible solutions.
Looking at the PyPI page for numpy it appears that there are "wheels" (binary packages) for most versions of Python, on Windows...but only for rc2.
Perhaps it would work if you did this instead: pip install --user numpy==1.11.2rc2