Issue
I have a very similar question to this question, but still one step behind. I have only one version of Python 3 installed on my Windows 7 (sorry) 64-bit system.
I installed numpy following this link - as suggested in the question. The installation went fine but when I execute
import numpy
I got the following error:
Import error: No module named numpy
I know this is probably a super basic question, but I'm still learning.
Thanks
Solution
Support for Python 3 was added in NumPy version 1.5.0, so to begin with, you must download/install a newer version of NumPy.
Or simply using pip
:
python3 -m pip install numpy
Answered By - unutbu
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.