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
728x90
반응형
'OS > Linux_ubuntu' 카테고리의 다른 글
우분투에서 배터리 남은 시간 확인 (0) | 2024.07.07 |
---|---|
우분투 노트북에서 cpu power 제한 (0) | 2024.07.07 |
[ubuntu] nextcloud 설치 (0) | 2024.05.15 |
우분투 gnome(그놈) 확장 추가 : Burn My Windows (0) | 2024.04.25 |
ubuntu(우분투) wine(와인) 설치, 프로그램 추가 삭제, 한글 깨짐, 버젼확인 (0) | 2024.04.25 |