Instale o R Ubuntu 17.10 [Pacotes quebrados]

0

Estou tentando instalar o R no ubuntu 17.10

Eu tenho a seguinte saída:

$ sudo apt install r-base-core
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 r-base-core : Depends: libpng12-0 (>= 1.2.13-4) but it is not installable
               Recommends: r-recommended but it is not going to be installed
               Recommends: r-base-dev but it is not going to be installed
               Recommends: r-doc-html but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

Eu tentei o seguinte:

$sudo dpkg --get-selections | grep deinstall

Nenhuma saída.

$sudo apt-get install -f
Reading package lists... Done
Building dependency tree       
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

$sudo aptitude full-upgrade
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0 B of archives. After unpacking 0 B will be used.

Então, por enquanto, estou preso em como ir mais longe ...

    
por Quinten Lootens 14.11.2017 / 13:45

2 respostas

0

Eu adicionei o representante errado:

sudo add-apt-repository 'deb [arch=amd64,i386] https://cran.rstudio.com/bin/linux/ubuntu xenial/' 

deve ser

sudo add-apt-repository 'deb [arch=amd64,i386] https://cran.rstudio.com/bin/linux/ubuntu artful/'
    
por Quinten Lootens 14.11.2017 / 14:19
0

Você deve primeiro remover o repositório "xenial" errado executando:

sudo add-apt-repository -r 'deb [arch=amd64,i386] https://cran.rstudio.com/bin/linux/ubuntu xenial/'

instale r-base-core executando:

sudo apt install r-base-core
    
por Yassin Hassan 27.11.2017 / 15:11