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

내가 시도한 것:



  • run sudo add-apt-repository --remove ppa:developmentseed/mapbox
    running this 명령을 삭제하시겠습니까?라는 질문을 받았습니다. 대답은 물론이다.yes
  • 실행 sudo apt update하고 동일한 초기 오류가 발생합니다.

그렇다면 이 오류를 제거하는 방법은 무엇입니까?

추가 참고 사항:

답변1

URL이 잘못되었습니다.

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웹 브라우저에 입력하세요.

관련 정보