Credentials missing

I am trying to run locally the first Jupyter Notebook “L2-query_with_cypher.ipynb”

At the very beginning I am asked to use certain credential which are hidden from me:

load_dotenv('.env', override=True)
NEO4J_URI = os.getenv('NEO4J_URI')
NEO4J_USERNAME = os.getenv('NEO4J_USERNAME')
NEO4J_PASSWORD = os.getenv('NEO4J_PASSWORD')
NEO4J_DATABASE = os.getenv('NEO4J_DATABASE')

Please advise how to proceed.

1 Like

@ALEXANDER_KONSTANTIN When we run these jupyter notebooks outside the control of the DeepLearningAI learning platform, we need to create our own accounts and obtain credentials to use whatever resources are involved. In this case, you should go to neo4j and create an account and obtain credentials.

To install neo4j locally, I suggest you take at look at @pol_avec 's post:

see this for a much easier way to run it: Setting up Neo4j locally - #9 by pol_avec