I am following this blog to install latest Neo4j in Ubuntu 18.04.
I already update ubuntu with following commands.
$ sudo apt-get update
$ sudo apt-get dist-upgradeWhen I followed Neo4j installation step at the end every time getting the error:
Unable to locate package neo4jProblem is here:
$ sudo apt-get udpate
Reading package lists... Done
E: Release file for 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:// See press release for details. 3 1 Answer
I also had the same problem.
Inorder to install neo4j in ubuntu 18.04
Enter as root
$ sudo suFollow these steps
$ wget --no-check-certificate -O - | sudo apt-key add -
$ echo 'deb stable/' > /etc/apt/sources.list.d/neo4j.list
$ apt update
$ apt install neo4j
This will help you..