You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm encountering a ValueError when trying to run the following code block in Google Colab:
kg = Neo4jGraph( url=NEO4J_URI, username=NEO4J_USERNAME, password=NEO4J_PASSWORD, database=NEO4J_DATABASE )
ERROR :
ValueError: Did not find url, please add an environment variable NEO4J_URI which contains it, or pass url as a named parameter.
Should I establish a connection to a Neo4j DBMS before running this code block? OR
Is there a simpler way to run this code in Colab, without explicitly connecting beforehand?
The text was updated successfully, but these errors were encountered:
I'm encountering a ValueError when trying to run the following code block in Google Colab:
kg = Neo4jGraph( url=NEO4J_URI, username=NEO4J_USERNAME, password=NEO4J_PASSWORD, database=NEO4J_DATABASE )
ERROR :
ValueError: Did not find url, please add an environment variable
NEO4J_URI
which contains it, or passurl
as a named parameter.Should I establish a connection to a Neo4j DBMS before running this code block? OR
Is there a simpler way to run this code in Colab, without explicitly connecting beforehand?
The text was updated successfully, but these errors were encountered: