在ubuntu 14.04上安装neo4j失败

时间:2017-10-07 02:48:55

标签: neo4j ubuntu-14.04

我正在尝试按照http://neo4j.com/docs/operations-manual/current/installation/linux/debian/?_ga=2.249168388.2041192375.1507250087-893468657.1507250087

中的说明在ubuntu 14.04中安装neo4j

我正在使用的安装说明是

sudo apt-get install neo4j=3.2.3

但它不起作用

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package neo4j

我会提供任何帮助

2 个答案:

答案 0 :(得分:4)

也许您忘记添加debian存储库并更新软件包列表:

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
sudo apt-get update

https://neo4j.com/docs/operations-manual/current/installation/linux/debian/#debian-add-repository

答案 1 :(得分:2)

我在Debian上遇到了同样的问题,并安装了“ apt-transport-https”,因为deb https://debian.neo4j.org/repo stable/正在使用https。 您可以通过以下方式安装它:

sudo apt install apt-transport-https