Modulenotfounderror: No Module Named 'neo4j.addressing' And Modulenotfounderror: No Module Named 'neo4j'
I am getting this error. just from trying to run Graph() method. >>> import py2neo >>> graph = py2neo.Graph() Traceback (most recent call last): File '
Solution 1:
pip install neo4j-driver==1.6.2
This should resolve the problem. There seems to be a version specific issue with the neo4j-driver installed alongside py2neo==4.1.0
Post a Comment for "Modulenotfounderror: No Module Named 'neo4j.addressing' And Modulenotfounderror: No Module Named 'neo4j'"