9 lines
256 B
Plaintext
9 lines
256 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
|
||
|
# You should run this script as a root.
|
||
|
|
||
|
wget -O - http://debian.neo4j.org/neotechnology.gpg.key | apt-key add -
|
||
|
echo 'deb http://debian.neo4j.org/repo stable/' > /etc/apt/sources.list.d/neo4j.list
|
||
|
apt-get update
|
||
|
apt-get install neo4j
|