OS/Linux_ubuntu

리눅스 우분투에 R과 R studio 설치

눈곱만큼도모름 2024. 7. 7. 02:26
728x90
반응형

 

00. 들어가기 앞서

터미널에서 apt 업데이트를 한번 해준다. 이과정을 생략하는 경우 R이나 R studio가 설치 안되는 이슈가 있다.

sudo apt update

01. R 설치

터미널에서 입력한다. 
https://cran.yu.ac.kr/에 방문하면 설치법을 볼 수 있지만 아래 코드를 옮겨 왔으니 따라 치면된다.

sudo apt update -qq

sudo apt install --no-install-recommends software-properties-common dirmngr

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

sudo add-apt-repository "deb https://cloud.r-project.org/bin/linux/ubuntu $(lsb_release -cs)-cran40/"

sudo apt install --no-install-recommends r-base

설치완료 되었는지 확인으로 버젼을 확인해본다.

 R --version

아래처럼 아이콘도 확인해볼 수 있다.

 


02. R studio 설치

 

아래 사이트를 방문해서 쭈욱 내리다보면 우분투 설치 파일을 확인 할 수 있다.

그것을 다운 받은 후 설치 하면 된다.

https://posit.co/download/rstudio-desktop/#download

 

Posit

The best data science is open source. Posit is committed to creating incredible open-source tools for individuals, teams, and enterprises.

posit.co

 

728x90
반응형