ModuleNotFoundError:没有名为“ neo4j.addressing”的模块,而ModuleNotFoundError:没有名为“ neo4j”的模块

时间:2018-10-24 13:32:18

标签: python neo4j py2neo

我收到此错误。只是尝试运行Graph()方法。

>>> import py2neo
>>> graph = py2neo.Graph()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "E:\Chibanggri\flask and neo4j\venv\lib\site-packages\py2neo\database.py", line 305, in __new__
database = Database(uri, **settings)
File "E:\Chibanggri\flask and neo4j\venv\lib\site-packages\py2neo\database.py", line 85, in __new__
connection_data = get_connection_data(uri, **settings)
File "E:\Chibanggri\flask and neo4j\venv\lib\site-packages\py2neo\internal\addressing.py", line 118, in get_connection_data
data["user_agent"] = http_user_agent() if data["scheme"] in ["http", "https"] else bolt_user_agent()
File "E:\Chibanggri\flask and neo4j\venv\lib\site-packages\py2neo\meta.py", line 32, in bolt_user_agent
import neo4j
ModuleNotFoundError: No module named 'neo4j'

没有neo4j-driver会出现此错误

>>> import py2neo
>>> graph = py2neo.Graph()
Traceback (most recent call last):
File "E:\Chibanggri\flask and neo4j\venv\lib\site-packages\py2neo\database.py", line 88, in __new__
inst = cls._instances[key]
KeyError: 'c562f33e637233f1922f80fc5652b53a'

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "E:\Chibanggri\flask and neo4j\venv\lib\site-packages\py2neo\database.py", line 305, in __new__
database = Database(uri, **settings)
File "E:\Chibanggri\flask and neo4j\venv\lib\site-packages\py2neo\database.py", line 92, in __new__
from py2neo.internal.http import HTTPDriver, HTTPSDriver
File "E:\Chibanggri\flask and neo4j\venv\lib\site-packages\py2neo\internal\http.py", line 26, in <module>
from neo4j.addressing import SocketAddress
ModuleNotFoundError: No module named 'neo4j.addressing'

与neo4j驱动程序一起使用 这是点子冻结

astroid==2.0.4
bcrypt==3.1.4
cffi==1.11.5
Click==7.0
colorama==0.4.0
Flask==1.0.2
isort==4.3.4
ItsDangerous==1.0.0
Jinja2==2.10
lazy-object-proxy==1.3.1
MarkupSafe==1.0
mccabe==0.6.1
neobolt==1.7.0
neotime==1.7.1
passlib==1.7.1
py2neo==4.1.0
pycparser==2.19
pylint==2.1.1
pytz==2018.6
six==1.11.0
Werkzeug==0.14.1
wrapt==1.10.11 

这一切都是在我为烧瓶教程设置的虚拟环境(venv)中完成的。 问题似乎不是由于长颈瓶,最有可能与neo4j本身有关。我不知道该怎么办。

1 个答案:

答案 0 :(得分:1)

pip install neo4j-driver == 1.6.2

这应该可以解决问题。与py2neo == 4.1.0一起安装的neo4j驱动程序似乎存在特定于版本的问题