upon entering the command:
graphlab.show();
I get the following error:
Error: Requested port is unavailable: None
So, I tried to set the port by typing:
gl.canvas.set_target('ipynb', 8888).
But not fruitful. I checked the open ports in ubuntu terminal and assigned it different points (among some confirmed open ports) but it's not working anyways.
I am using python jupyter notebook in browser through pycharm.
Try downgrading tornado:
(replace
pip
withconda
if you are using Anaconda)Using
without setting a port should then be enough.
Source