存储库地址存在问题

存储库地址存在问题

我在联想 z5070 上使用 Ubuntu 16.04.1 xenial。我正在尝试在笔记本电脑上安装 rstudio。rstudio 的存储库地址是:

http://cran.rstudio.com/bin/linux/ubuntu/xenial/

但是当我使用这个地址时sudo apt-get update,我遇到了以下问题:

E: Malformed entry 55 in list file /etc/apt/sources.list (Suite)
E: The list of sources could not be read.

因此为了解决这个问题,我将存储库地址更改为以下地址:

http://cran.rstudio.com/bin/linux/ubuntu xenial/

问题已解决并且sudo apt-get update运行良好,但对于 rstudio,我收到以下警告:

The repository 'http://cran.rstudio.com/bin/linux/ubuntu xenial/ InRelease' is not signed.

我该如何解决这个问题?

谢谢大家,

曼苏尔,

答案1

通过获取安全 APT 密钥解决了该问题:

gpg --keyserver keyserver.ubuntu.com --recv-key E084DAB9
gpg -a --export E084DAB9 | sudo apt-key add -

那么对于我想要安装的每个包,我都应该导入 APT 密钥吗?

相关内容