Created
May 13, 2020 05:08
-
-
Save Nathan-Nesbitt/633d6aace6822635e80d438ba4fd6525 to your computer and use it in GitHub Desktop.
Installing Neo4j on Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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