在Python中从bulbs.neo4jserver导入Graph时出错

时间:2014-03-10 19:12:03

标签: python python-2.7 neo4j gremlin bulbs

我正在尝试使用neo4j运行gremlin。我正在关注灯泡文档中的第一个示例之一,尝试导入bulbs.neo4jserver .Graph。我可以导入灯泡,它看到gremlin,但无法使用以下命令导入Graph。

>>> import bulbs
>>> bulbs.gremlin
<module 'bulbs.gremlin' from 'C:\Anaconda\lib\site-packages\bulbs\gremlin.pyc'>
>>> from bulbs.neo4jserver import Graph
Traceback (most recent call last):
  File "<interactive input>", line 1, in <module>
ImportError: cannot import name Graph

我已经在gremlin和rexster上下载并运行了maven。我在Windows 8中使用Python 2.7安装Anaconda。

你还需要知道什么?

感谢任何帮助。感谢。

1 个答案:

答案 0 :(得分:1)

您使用的是什么版本的灯泡?

$ pip freeze | grep bulbs

你应该能够做到这一点......

$ python
Python 2.7.5 (default, Feb 19 2014, 13:47:28) 
Type "help", "copyright", "credits" or "license" for more information.
>>> 
>>> from bulbs.neo4jserver import Graph
>>> g = Graph()