I am trying to build a recommendation engine using the graphlab
library.
I read in the graphlab
documentation that graphlab
is built for Python 2.7.
I am using Python 3.5.
I have successfully installed graphlab
with tar.gz but while importing graphlab
, I am getting following error.
AttributeError Traceback (most recent call last) in () ----> 1 import graphlab 2 #graphlab.get_dependencies()
/usr/local/lib/python3.5/dist-packages/graphlab/init.py in () 48 from graphlab.util import set_runtime_config 49 ---> 50 import graphlab.connect as _mt 51 import graphlab.connect.aws as aws 52 from . import visualization
AttributeError: module 'graphlab' has no attribute 'connect'
Can anybody please guide me about what could be wrong?