Je veux pouvoir installer la dernière version stable de R pour Ubuntu 18.04, j'avais la version ubuntu installée et je l'ai donc supprimée, puis j'ai suivi plusieurs guides comme dans le lien this .
Peu importe ce que je fais, j'obtiens la sortie suivante lorsque j'émets un Sudo apt-get install r-base
:
Sudo apt install r-base
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 : Depends: r-base-core (>= 3.6.1-3disco) but it is not going to be installed
Depends: r-recommended (= 3.6.1-3disco) but it is not going to be installed
Recommends: r-base-html but it is not going to be installed
E: Unable to correct problems, you have held broken packages.
Qu'est-ce qui ne va pas? (J'ai fait tout le apt update
etc.)
Pour tous ceux qui rencontrent le même problème, j'ai trouvé la solution dans: Impossible d'installer R 3.5.0 dans Ubuntu Bionic Beaver (18.04)
J'ai simplement émis ces commandes dans l'ordre et j'ai ensuite pu installer:
deb https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/
de /etc/apt/sources.list
Sudo apt-get autoremove Sudo apt-get update Sudo apt-get upgrade
deb https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/
à /etc/apt/sources.list
Sudo apt-get update
Sudo apt-get install r-base
Et c'était tout (installé R 3.6.1).
Cette solution a fonctionné pour moi: https://linuxize.com/post/how-to-install-r-on-ubuntu-18-04/
Sudo apt install apt-transport-https software-properties-common
Sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9
Sudo add-apt-repository 'deb https://cloud.r-project.org/bin/linux/ubuntu bionic-cran35/'
Sudo apt update Sudo apt install r-base
R --version