Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 724 Bytes

install-neo4j-in-ubuntu.md

File metadata and controls

30 lines (21 loc) · 724 Bytes

Install Neo4j in Ubuntu

Step 0: To install Neo4j on Ubuntu you need to make sure that you have Java 8 Runtime is installed.

These commands should do the trick.

sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer

Step 1: Add the repository

wget -O - https://debian.neo4j.org/neotechnology.gpg.key | sudo apt-key add -
echo 'deb https://debian.neo4j.org/repo stable/' | sudo tee -a /etc/apt/sources.list.d/neo4j.list

Step 2: Update the repositories.

sudo apt-get update

Step 3: Installing

sudo apt-get install neo4j=1:3.4.1