I’ve come across an issue testing out my graphlab installation using code from this link. I use Linux (Ubuntu 16.04) and when I run these first few lines:
import graphlab as gl
gl.canvas.set_target('ipynb') # use IPython Notebook output for GraphLab Canvas
vertices = gl.SFrame.read_csv('https://static.turi.com/datasets/bond/bond_vertices.csv')
I get this error at the end of the stack trace:
IOError: Cannot open https://static.turi.com/datasets/bond/bond_vertices.csv: unspecified iostream_category error: unspecified iostream_category error
I've tried reinstalling, as suggested here but after following the directions and trying to run graphlab.get_dependencies(), I get this error:
AttributeError: 'module' object has no attribute 'get_dependencies'
This isn't an issue with the Windows side of my computer.
If I download the reference .csv files and open them locally, there is no error. Does anyone have any suggestions on this?