我正在關注這個部落格在 Ubuntu 18.04 中安裝最新的 Neo4j。
我已經使用以下命令更新了 ubuntu。
$ sudo apt-get update
$ sudo apt-get dist-upgrade
當我Neo4j
每次收到錯誤時都按照最後的安裝步驟進行操作:
Unable to locate package neo4j
問題就在這裡:
$ sudo apt-get udpate
Reading package lists... Done
E: Release file for https://debian.neo4j.org/repo/stable/Release is not valid yet (invalid for another 1min 22s). Updates for this repository will not be applied.
W: Debian shuts down public FTP services currently still used in your sources.list(5) as 'ftp://ftp.nl.debian.org/debian/'.
See press release https://debian.org/News/2017/20170425 for details.
答案1
我也有同樣的問題。
為了在 ubuntu 18.04 中安裝 neo4j
以 root 身分輸入
$ sudo su
按著這些次序
$ wget --no-check-certificate -O - https://debian.neo4j.org/neotechnology.gpg.key | sudo apt-key add -
$ echo 'deb http://debian.neo4j.org/repo stable/' > /etc/apt/sources.list.d/neo4j.list
$ apt update
$ apt install neo4j
這會幫助你..