Installed the latest python version and upgraded graphdatascience to version 1.4.
I can no longer make a connection to the database as previously down.
from graphdatascience import GraphDataScience
gds = GraphDataScience("bolt://localhost:7687", auth=("***","****"))
Failed to establish connection to ResolvedIPv4Address(('127.0.0.1', 7687)) (reason [Errno 61] Connection refused)
I have also tried
from graphdatascience import GraphDataScience
gds = GraphDataScience("neo4j://localhost:7687", auth=("***","****"))
UnableToConnectError: Unable to retrieve routing information
Suggestions for resolution?
Andy