I recently installed SciPy for Python3.4 on Ubuntu 12.04 with
pip3 install scipy
When I import scipy in Python3.4 as:
import scipy
it imports, but when I import the function interpolate as
import scipy.interpolate
I get the following error:
  File "test.py", line 55, in <module>
    import scipy.interpolate
  File "/home//.pyenv/versions/3.4.1/lib/python3.4/site-packages/scipy/interpolate/__init__.py", line 158, in <module>
    from .interpolate import *
  File "/home/nxkr/.pyenv/versions/3.4.1/lib/python3.4/site-packages/scipy/interpolate/interpolate.py", line 11, in <module>
    import scipy.linalg
  File "/home/nxkr/.pyenv/versions/3.4.1/lib/python3.4/site-packages/scipy/linalg/__init__.py", line 175, in <module>
    from .basic import *
  File "/home/nxkr/.pyenv/versions/3.4.1/lib/python3.4/site-packages/scipy/linalg/basic.py", line 21, in <module>
    from ._solve_toeplitz import levinson
ImportError: /home/nxkr/.pyenv/versions/3.4.1/lib/python3.4/site-packages/scipy/linalg/_solve_toeplitz.cpython-34m.so: undefined symbol: _intel_fast_memcpy
How to fix this error in Python3?