Skip to content Skip to sidebar Skip to footer

Python Code Works Fine On Python Shell But Not Through Cmd When Importing Py2neo

as said in the title I'm having problem runnig my code from cmd which is working just fine in python shell. I have py2neo version 4. here is my code: from py2neo import Graph print

Solution 1:

Are you positive that py2neo is installed? What happens if you run pip install py2neo? I've had issues with pip and python versions in the past, so I would make sure that your pip is the same version as your python by running pip --version


Post a Comment for "Python Code Works Fine On Python Shell But Not Through Cmd When Importing Py2neo"