« Analyse de données » : différence entre les versions
De Wik&Tic Wik&siT
|  (Page créée avec « Installation System R  Run these lines (if <code>root</code>, remove <code>sudo</code>) to tell Ubuntu about the R binaries at CRAN.  <code># update indices  sudo apt update -qq  # install two helper packages we need  sudo apt install --no-install-recommends software-properties-common dirmngr  # add the signing key (by Michael Rutter) for these repos  # To verify key, run gpg --show-keys /etc/apt/trusted.gpg.d/cran_ubuntu_key.asc   # Fingerprint: E298A3A825C0D65D... ») | Aucun résumé des modifications | ||
| Ligne 1 : | Ligne 1 : | ||
| Installation System R | ==Installation System R== | ||
| https://pbil.univ-lyon1.fr/CRAN/ | |||
| Run these lines (if <code>root</code>, remove <code>sudo</code>) to tell Ubuntu about the R binaries at CRAN. | Run these lines (if <code>root</code>, remove <code>sudo</code>) to tell Ubuntu about the R binaries at CRAN. | ||
|   <code># update indices |   <code> | ||
|  # update indices | |||
|   sudo apt update -qq |   sudo apt update -qq | ||
|   # install two helper packages we need |   # install two helper packages we need | ||
| Ligne 12 : | Ligne 14 : | ||
|   # add the R 4.0 repo from CRAN -- adjust 'focal' to 'groovy' or 'bionic' as needed |   # add the R 4.0 repo from CRAN -- adjust 'focal' to 'groovy' or 'bionic' as needed | ||
|   sudo add-apt-repository "deb <nowiki>https://cloud.r-project.org/bin/linux/ubuntu</nowiki> $(lsb_release -cs)-cran40/"</code> |   sudo add-apt-repository "deb <nowiki>https://cloud.r-project.org/bin/linux/ubuntu</nowiki> $(lsb_release -cs)-cran40/"</code> | ||
| Run these lines (if root, remove sudo) to tell Ubuntu about the R binaries at CRAN. | |||
Version du 7 mai 2023 à 13:11
Installation System R
https://pbil.univ-lyon1.fr/CRAN/
Run these lines (if root, remove sudo) to tell Ubuntu about the R binaries at CRAN.
# update indices
sudo apt update -qq
# install two helper packages we need
sudo apt install --no-install-recommends software-properties-common dirmngr
# add the signing key (by Michael Rutter) for these repos
# To verify key, run gpg --show-keys /etc/apt/trusted.gpg.d/cran_ubuntu_key.asc 
# Fingerprint: E298A3A825C0D65DFD57CBB651716619E084DAB9
wget -qO- https://cloud.r-project.org/bin/linux/ubuntu/marutter_pubkey.asc | sudo tee -a /etc/apt/trusted.gpg.d/cran_ubuntu_key.asc
# add the R 4.0 repo from CRAN -- adjust 'focal' to 'groovy' or 'bionic' as needed
sudo add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $(lsb_release -cs)-cran40/"
Run these lines (if root, remove sudo) to tell Ubuntu about the R binaries at CRAN.

