Skip to content

Instantly share code, notes, and snippets.

@Nathan-Nesbitt
Created May 13, 2020 05:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nathan-Nesbitt/633d6aace6822635e80d438ba4fd6525 to your computer and use it in GitHub Desktop.
Save Nathan-Nesbitt/633d6aace6822635e80d438ba4fd6525 to your computer and use it in GitHub Desktop.
Installing Neo4j on Ubuntu
# For the most up to date information and installation process,
# go to https://neo4j.com/docs/operations-manual/current/installation/linux/debian/#debian-installation
# Get the debian package from neo4j
wget -O - https://debian.neo4j.com/neotechnology.gpg.key | sudo apt-key add -
echo 'deb https://debian.neo4j.com stable latest' | sudo tee -a /etc/apt/sources.list.d/neo4j.list
sudo apt-get update
# Installs neo4j
sudo apt-get install neo4j
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment