Answers for "ubuntu install r"

9

linux ubuntu install python 3.7

sudo apt-get install python3.7
Posted by: Guest on April-18-2020
0

installing r on ubuntu 16.04

sudo apt-get install r-base
Posted by: Guest on January-01-2021
0

r installation on ubuntu

# update indices
apt update -qq
# install two helper packages we need
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: 298A3A825C0D65DFD57CBB651716619E084DAB9
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
add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $(lsb_release -cs)-cran40/"
Posted by: Guest on November-13-2021

Python Answers by Framework

Browse Popular Code Answers by Language