우분투 18.04에 R을 설치하는 방법입니다.
요점
- apt로 설치하는 것입니다.
- Ubuntu 20.04에 설치하는 방법과는 조금 다를 수 있습니다.
- 시스테에 최소 1Gb 메모리가 필요합니다.
리눅스 필요 패키지 설치
필요한 리눅스 패키지를 먼저 설치합니다.
1 2 3 |
sudo apt install apt-transport-https software-properties-common |
R패키지가 있는 CRAN 레파지토리를 등록하고 GPG 키도 등록
R패키지를 설치하려면 CRAN을 apt에 등록하고 gpg키도 등록해줘야 합니다.
1 2 3 4 |
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/' |
R 설치
apt를 업데이트해주고 r-base를 설치하면 끝납니다.
1 2 3 4 |
sudo apt update sudo apt install r-base |
R버전 확인
다음의 명령어로 버전을 확인합니다.
1 2 3 |
R --version |
최신버전인지 확인합니다.
1 2 3 4 5 6 7 8 9 10 11 |
R version 4.1.2 (2021-11-01) -- "Bird Hippie" Copyright (C) 2021 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu (64-bit) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under the terms of the GNU General Public License versions 2 or 3. For more information about these matters see https://www.gnu.org/licenses/. |