3

我正在尝试使用 tinkerpop3.2.3 在我的 centOS7 上连接 janusgraph0.1.1,在 gremlin shell 中一切正常。我尝试在 python shell 中使用 gremlin-python3.2.3,它也很好用。但是当我将代码移动到 jupyter notebook 时,我得到了 RuntimeError:IOLoop is already running when excuting

g = graph.traversal().withRemote(DriverRemoteConnection('ws://localhost:8182/gremlin','g'))

那么,是否有可能让 gremlinpython 在 jupyter notebook 中工作?我尝试了 python2.7 和 python3.5

4

1 回答 1

1

您看到的问题更多是在 Apache TinkerPop 级别。JanusGraph 0.1.1 附带 TinkerPop 3.2.3,您看到的错误已通过 TinkerPop 3.2.5 解决。

JanusGraph 的主分支已经在 TinkerPop 3.2.6 中,因此它与 Jupyter 笔记本兼容,但您必须从源代码构建 JanusGraph。我预计 JanusGraph 的下一个版本将在本月晚些时候发布。

于 2017-10-04T17:50:30.607 回答