ProtocolError: Cannot decode response content as JSON(终于解决)

当我们在执行如下代码时

g = Graph('http://localhost:7474', auth=('neo4j', 'neo4j'))

出现如下错误

D:\anaconda3\lib\site-packages\six.py in raise_from(value, from_value)
ProtocolError: Cannot decode response content as JSON

错误的原因是第一次执行代码时,没有指定使用的数据库,我们将代码进行如下修改

g = Graph('http://localhost:7474', auth=('neo4j', 'neo4j'), name='neo4j')

当我们指定好使用的数据库名字时,这个问题就解决啦!

你可能感兴趣的:(Neo4j,图神经网络入门,Neo4j,数据库)