Debian

apt-get 失敗:找不到方法驅動程序 /usr/lib/apt/methods/https

  • November 9, 2021

我嘗試使用終端更新我的作業系統 Debian jessie,但出現錯誤:

“E: The method driver /usr/lib/apt/methods/https could not be found.” error?

我的來源.list :

deb http://httpredir.debian.org/debian/ jessie main
deb-src http://httpredir.debian.org/debian/ jessie main

deb http://security.debian.org/ jessie/updates main
deb-src http://security.debian.org/ jessie/updates main

# jessie-updates, previously known as 'volatile'
deb http://httpredir.debian.org/debian/ jessie-updates main
deb-src http://httpredir.debian.org/debian/ jessie-updates main

deb http://ftp.de.debian.org/debian jessie main 

如何修復apt-get updateaptitude update

聽起來您可能已經添加了一些 https 源。由於您sources.list/etc/apt/sources.list.d/.

您可能還需要處理始終重定向到 https 的代理。

您可以通過安裝幾個軟體包來添加對 https apt 源的支持:

apt-get install apt-transport-https ca-certificates

如果您apt-get太壞了,無法執行此操作,您可以直接下載軟體包並使用dpkg -i. 可以類似地跟踪和獲取該包的任何其他依賴項(dpkg如果缺少任何內容,將通知您)。

如果它仍然不起作用,您可以嘗試編輯源條目以使用 http 而不是 https,或者只是將其刪除並按照源維護者的說明重新開始。

引用自:https://unix.stackexchange.com/questions/263801