Rstudio에서 'distill' 패키지를 설치할 때 '치명적인 오류: png.h'를 해결하는 방법 - Ubuntu 22.04

Rstudio에서 'distill' 패키지를 설치할 때 '치명적인 오류: png.h'를 해결하는 방법 - Ubuntu 22.04

내 컴퓨터에 R과 Rstudio를 성공적으로 설치한 후. Rstudio에 다음과 같이 'distill' 패키지를 설치했습니다 > install.packages("distill").

몇 분 후에 치명적인 오류가 발생하면서 종료되었습니다.

/bin/bash: libpng-config: command not found
read.c:3:10: fatal error: png.h: No such file or directory
3 | #include 
  |          ^~~~~~~
compilation terminated.

우분투에서 이 오류를 극복하는 방법을 검색했지만 간단한 방법을 찾지 못했습니다.

답변1

이 치명적인 오류를 해결하는 가장 간단한 방법은 다음과 같이 'libpng' 패키지를 설치하는 것입니다.

sudo apt-get install -y libpng-dev.

그런 다음 Rstudio를 다시 시작하고 'distill' 패키지를 다시 설치해 보세요. 그게 다야.

관련 정보