Without Anaconda, everything works fine. That is, I can import the above packages. But after installing Anaconda, I cannot import the same packages. Here is the error I get: -
>>> import numpy Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/local/lib/python2.7/dist-packages/numpy/__init__.py", line 199, in <module> from . import random File "/usr/local/lib/python2.7/dist-packages/numpy/random/__init__.py", line 99, in <module> from .mtrand import * ImportError: /usr/local/lib/python2.7/dist-packages/numpy/random /mtrand.so: undefined symbol: PyFPE_jbuf
source share