-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds R installation and install R version 4.4.0 (2024-04-24) #71
- Loading branch information
1 parent
fdde57a
commit 113f66a
Showing
4 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
q() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# R | ||
|
||
|
||
## Installation | ||
``` | ||
installation.bash | ||
``` | ||
|
||
## Test installation | ||
``` | ||
R --version | ||
#R version 4.4.0 (2024-04-24) -- "Puppy Cup" | ||
``` | ||
|
||
## References | ||
* https://cran.r-project.org/bin/linux/ubuntu/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# update indices | ||
sudo apt update -qq | ||
# install two helper packages we need | ||
sudo apt install --no-install-recommends software-properties-common dirmngr | ||
# import the signing key (by Michael Rutter) for these repo | ||
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E298A3A825C0D65DFD57CBB651716619E084DAB9 | ||
# 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/" | ||
|
||
# Install R | ||
sudo apt install --no-install-recommends r-base |