programming language/R

[R] Ubuntu에서 install.packages 관련 Error (ggplots 설치 안됨)

눈곱만큼도모름 2024. 4. 5. 15:07
728x90
반응형
ERROR: dependencies ‘cli’, ‘fansi’, ‘glue’, ‘lifecycle’, ‘rlang’, ‘utf8’, ‘vctrs’ are not available for package ‘pillar’
* removing ‘/home/airy/R/x86_64-pc-linux-gnu-library/4.3/pillar’
Warning in install.packages :
  패키지 ‘pillar’의 설치가 0이 아닌 종료상태를 가졌습니다
ERROR: dependencies ‘fansi’, ‘lifecycle’, ‘magrittr’, ‘pillar’, ‘rlang’, ‘vctrs’ are not available for package ‘tibble’
* removing ‘/home/airy/R/x86_64-pc-linux-gnu-library/4.3/tibble’
Warning in install.packages :
  패키지 ‘tibble’의 설치가 0이 아닌 종료상태를 가졌습니다
ERROR: dependencies ‘cli’, ‘glue’, ‘gtable’, ‘isoband’, ‘lifecycle’, ‘rlang’, ‘scales’, ‘tibble’, ‘vctrs’ are not available for package ‘ggplot2’
* removing ‘/home/airy/R/x86_64-pc-linux-gnu-library/4.3/ggplot2’
Warning in install.packages :
  패키지 ‘ggplot2’의 설치가 0이 아닌 종료상태를 가졌습니다

우분투에서 install.packages()를 통해서 패키지를 설치 할때 error가 나는 경우.

위와 같은 형태의 메세지가 뜰경우에는

시스템 package를 설치 한다.

sudo apt-get update
sudo apt-get install build-essential

그런 후 원하는 패키지를 설치한다.

728x90
반응형

'programming language > R' 카테고리의 다른 글

R에서 matrix와 data.frame의 차이  (0) 2024.08.31