I installed numpy package in python 3.6 successfully, but when i tried to import numpy i got errors. Please see attached image: Link to Image
What i should do? I have windows 10 (64 bit).
I installed numpy package in python 3.6 successfully, but when i tried to import numpy i got errors. Please see attached image: Link to Image
What i should do? I have windows 10 (64 bit).
As you are using python 3.6 (according to your screenshot), this comment on the official numpy release should be relevant for you (as this is exactly the version your pip install numpy is grabbing), although that's not something i have much experience with, as i'm using anaconda (recommended!) only.
Note that the Python 3.6 wheels available from PIP are built against 3.6.1, hence will not work when used with 3.6.0 due to Python bug 29943_. NumPy 1.13.2 will be released shortly after Python 3.6.2 is out to fix that problem. If you are using 3.6.0 the workaround is to upgrade to 3.6.1 or use an earlier Python version.
(bold annotations from me)
Downgrade your numpy version to 1.12 , newer versions tend to be corrupted on Win10, check this out for more info, OR try upgrading your python version.