I\'m learning python using Visual Studio 2017 on Windows 10. When I\'m trying to import NumPy library into my code, this error appears. I have tried uninstalling and reinsta
The newest version (in python 3) seems to be broken. Install an old version:
pip3 uninstall numpy pip3 install 'numpy<1.13'
Keep in mind that was written in 2017. There might be a newer version that is not broken now.