Trying to make python work in order to use qutip is leading me to self distruction.
Today's new issue is in importing numpy
. I checked all the other stacks about this error, I couldn't get it fixed. I'm pretty puzzled also because the only thing i did was installing all the packages and checking their installation importing them. The only thing i put hand on was PYTHONPATH
to fix another error.
I'm using python2.7.12
.
The problem is that when i command
import numpy
The ouput is:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.7/dist-packages/numpy/__init__.py", line 201, in <module>
from . import random
File "/usr/lib/python2.7/dist-packages/numpy/random/__init__.py", line 99, in <module>
from .mtrand import *
ImportError: /usr/lib/python2.7/dist-packages/numpy/random/mtrand.so: undefined symbol: PyFPE_jbuf
What does it mean? How do i fix the problem?
Numpy
is at its newest version, i installed it with apt-get
first and then with pip
.