在我的计算机上成功安装 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.
我已经搜索过如何解决 Ubuntu 中的这个错误,但没有找到简单的方法。
答案1
解决此致命错误的最简单方法是安装“libpng”包,如下所示:
sudo apt-get install -y libpng-dev
。
然后,重新启动 Rstudio 并尝试再次安装“distill”包。就这样。