ImportError: libblas.so.3

5k Views Asked by At

After installation of turicreate, when I am importing it

import turicreate

I am getting the following error:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/papun/anaconda2/lib/python2.7/site-packages/turicreate/__init__.py", line 19, in <module>
    from turicreate.data_structures.sgraph import Vertex, Edge
  File "/home/papun/anaconda2/lib/python2.7/site-packages/turicreate/data_structures/__init__.py", line 18, in <module>
    from . import sframe
  File "/home/papun/anaconda2/lib/python2.7/site-packages/turicreate/data_structures/sframe.py", line 16, in <module>
    from ..connect import main as glconnect
  File "/home/papun/anaconda2/lib/python2.7/site-packages/turicreate/connect/main.py", line 13, in <module>
    from ..cython.cy_unity import UnityGlobalProxy
ImportError: libblas.so.3: cannot open shared object file: No such file or directory

It will helpful, if I can get a suggestion on this. I have also tried
re installing scipy.

1

There are 1 best solutions below

1
On

You need to install Blas.

Follow instruction details in this blog: libblas and liblapack issues and speed, with SciPy and Ubuntu