instalando o R no Ubuntu… problema [duplicado]

2

Eu tentei instalar o R no meu Ubuntu 16.10 Yakkety.

Eu coloquei o seguinte deb no meu arquivo /etc/apt/sources.list.

deb http://cran.ma.imperial.ac.uk/bin/linux/ubuntu yakkety main
universe restricted multiverse

No entanto, depois de executar sudo apt-get update , recebo a seguinte mensagem, que não entendo:

Fetched 102 kB in 6s (15.7 kB/s)                                                                                                                                            
Reading package lists... Done
W: The repository 'http://ppa.launchpad.net/george-edison55/cmake-3.x/ubuntu yakkety Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: The repository 'http://cran.ma.imperial.ac.uk/bin/linux/ubuntu yakkety Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
N: See apt-secure(8) manpage for repository creation and user configuration details.
W: The repository 'http://ppa.launchpad.net/george-edison55/precise-backports/ubuntu yakkety Release' does not have a Release file.
N: Data from such a repository can't be authenticated and is therefore potentially dangerous to use.

Alguém já se deparou com isso antes, ao instalar o R no Ubuntu 16.10?

    
por Alex Trevylan 18.04.2017 / 22:04

3 respostas

2

Você se esquece de importar a chave pgp para este repositório. Portanto, os relatórios de erros.

Para adicionar a execução da chave sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E084DAB9 depois, sudo apt update .

Há uma longa explicação de como adicionar seus repositórios aqui: link

    
por db429 18.04.2017 / 22:30
1

A linha no seu arquivo sources.list deve ser:

deb https://cran.ma.imperial.ac.uk/bin/linux/ubuntu yakkety/

Você não precisa de "main" ou algo assim.

Depois, leia as instruções para o APT seguro no link . apt reclama por não conseguir autenticar os pacotes do servidor.

    
por user258532 18.04.2017 / 22:31
0

Por que você não instala diretamente usando

sudo apt-get install r-base

Ou faça o download do deb de aqui

e instale usando o gdebi

    
por Kishlay Kumar 18.04.2017 / 22:09