Learn practical skills, build real-world projects, and advance your career

Setup

  1. Download and install Neo4j Desktop Edition as per instructions: https://neo4j.com/download/
  2. Run the command pip install ipython-cypher
  3. Run the Neo4j server
import jovian 

%load_ext cypher

Sets the URI to connect to

Note: you can change your password by typing the following command in the neo4j browser CALL dbms.security.changePassword("newpwd")

# change the password (after the ':') as required. 
# Here username is 'neo4j'
# The pwd is 'Zrwk3vPDex'
# The database name is 'data'
%config CypherMagic.uri='http://neo4j:Zrwk3vPDex@localhost:7474/db/data'

Start with clean state