# start root shell sudo -s # Import our signing key wget -O - http://debian.neo4j.org/neotechnology.gpg.key | apt-key add - # Create an Apt sources.list file echo 'deb http://debian.neo4j.org/repo stable/' > /etc/apt/sources.list.d/neo4j.list # Find out about the files in our repository apt-get update # Install Neo4j, community edition apt-get install neo4j # start neo4j server, available at http://localhost:7474 of the target machine neo4j start
To use the other editions, install neo4j-advanced, neo4j-enterprise instead of neo4j.
If you want to install unsupported milestone builds, add testing/ to neo4j.list instead of stable/.
