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: c
I encountered the same error; in my case maybe because there were two python directories in the path (there's normal python and an anaconda python) - both have numpy. The former was added via
sys.path.insert(0,'/usr/local/lib/python2.7/dist-packages')
Replacing this with:
site.addsitedir('/usr/local/lib/python2.7/dist-packages')
solved the problem for some reason.
I can't reproduce the original "add_newdocs" error now, though. As written here there are issues with ...insert(0,..), but ..insert(1,..) also gives errors...