I use Windows8.1 and python 2.7 and I installed the numpy1.8
. However, whenever I wanna import numpy
it shows the following error :ImportError: cannot import name add_newdocs
.
>>> import numpy
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python27\lib\site-packages\numpy\__init__.py", line 153, in <module>
from . import add_newdocs
ImportError: cannot import name add_newdocs
I have checked with C:\Python27\Lib\site-packages\numpy
the add_newdocs
does exist.
Can somebody tell me how to fix it?