如何摆脱 PPA?

如何摆脱 PPA?

每当我执行“sudo apt update”时,我最终都会得到:

W: Failed to fetch http://ppa.launchpad.net/developmentseed/mapbox/ubuntu/dists/jessie/main/binary-amd64/Packages  404  Not Found

我尝试过的:



  • runsudo add-apt-repository --remove ppa:developmentseed/mapbox
    运行此命令 我被问到您确定要删除它吗?答案当然是yes
  • 运行sudo apt update并得到相同的初始错误

那么到底如何消除这个错误呢?

补充笔记:

答案1

该网址无效。

ppa:developmentseed/mapbox可以找到可能的代号这里

要解决该问题,您应该手动删除下面的文件/etc/apt/sources.list.d

# rm /etc/apt/sources.list.d/*
# apt update

要安装tilemill,请安装nodejs然后按照安装指南

$ sudo apt install build-essential git curl
$ curl -sL https://deb.nodesource.com/setup_6.x -o nodesource_setup.sh
$ sudo bash nodesource_setup.sh
$ sudo apt-get install -y nodejs
$ git clone https://github.com/tilemill-project/tilemill.git
$ cd tilemill
$ npm install
$ npm install sqlite3
$ ./index.js --server=true

然后localhost:20009在您的网络浏览器中输入。

相关内容