0

I am new to python and I am trying to work on a project with deep learning and want to use graphlab library. I use sublime text for coding on windows 10. My code is only this line:

import graphlab

I get this error msg:

Traceback (most recent call last):

File "test.py", line 1, in

import graphlab

File "graphlab__init__.py", line 59, in

from graphlab.data_structures.sgraph import Vertex, Edge

File "graphlab\data_structures__init__.py", line 25, in

from . import sframe

File "graphlab\data_structures\sframe.py", line 19, in

from ..connect import main as glconnect

File "graphlab\connect\main.py", line 26, in

from ..cython.cy_unity import UnityGlobalProxy

ImportError: No module named cy_unity

3lwan
  • 15
  • 8

2 Answers2

0

Try using graphlab.get_dependencies() in your interpreter.

tristansokol
  • 4,054
  • 2
  • 17
  • 32
Vlad MN
  • 3
  • 2
0

I think I made a mistake when installing, i re-installed and it worked fine. Thanks anyway

3lwan
  • 15
  • 8