更新后无法读取存储库

更新后无法读取存储库

今天早上我的系统给了我一个安全更新,我安装了它。

现在我无法从更新管理器或终端读取或更新存储库sudo apt-get update

我收到以下消息:

The method driver /usr/lib/apt/methods/https could not be found.
Is package apt-transport-https installed!

我在 Synaptic 包管理器中收到了类似的消息。

有人能解释一下发生了什么吗?我能恢复过来吗?

谢谢

奈杰尔

答案1

错误消息告诉您检查该包是否apt-transport-https已安装。

您可以通过以下方式进行操作

dpkg -l | grep apt-transport-https

或者

apt-cache policy apt-transport-https

好像您不小心删除了它。如果是这种情况,请尝试通过 重新安装它apt

sudo apt-get install apt-transport-https

或更短

sudo apt install apt-transport-https

相关内容