Configuration failed to find the fontconfig freetype2 library. Try installing: * deb: libfontconfig1-dev (Debian, Ubuntu, etc) * rpm: fontconfig-devel (Fedora, EPEL) * csw: fontconfig_dev (Solaris) * brew: freetype (OSX) If fontconfig freetype2 is already installed, check that 'pkg-config' is in your PATH and PKG_CONFIG_PATH contains a fontconfig freetype2.pc file. If pkg-config is unavailable you can set INCLUDE_DIR and LIB_DIR manually via: R CMD INSTALL --configure-vars='INCLUDE_DIR=... LIB_DIR=...' -------------------------- [ERROR MESSAGE] --------------------------- <stdin>:1:35: fatal error: fontconfig/fontconfig.h: 没有那个文件或目录 compilation terminated. -------------------------------------------------------------------- ERROR: configuration failed for package ‘systemfonts’ * removing ‘/home/hadoop/R/x86_64-pc-linux-gnu-library/4.4/systemfonts’ 下载的程序包在 ‘/tmp/Rtmp8NuaMK/downloaded_packages’里 警告信息: In install.packages("systemfonts") : 安装程序包‘systemfonts’时退出狀態的值不是0 >
这个错误信息表明在安装 systemfonts
包时找不到 fontconfig
和 freetype2
库。这通常是因为缺少这些库的开发版本,导致编译过程无法找到必要的头文件和库文件。
解决方法
你可以按照以下步骤来解决安装 systemfonts
包时出现的问题:
-
安装
fontconfig
和freetype2
开发库:根据你使用的 Linux 发行版,安装
fontconfig
和freetype2
的开发版本:-
对于 Debian、Ubuntu 等使用 apt 包管理的系统:
sudo apt update sudo apt install libfontconfig1-dev libfreetype6-dev
-
对于 Fedora、CentOS、RHEL 等使用 yum 或 dnf 包管理的系统:
sudo yum install fontconfig-devel freetype-devel # 对于较旧的系统 或者 sudo dnf install fontconfig-devel freetype-devel # 对于更新的系统
这些命令将安装
fontconfig
和freetype2
的开发版本,包括需要的头文件和库文件。 -
-
检查
pkg-config
是否可用:确保系统中安装了
pkg-config
工具,并且它在系统的PATH
环境变量中可用。你可以通过运行以下命令检查:pkg-config --version
如果未安装,你可以使用包管理器安装它,例如:
-
对于 Debian、Ubuntu 等:
sudo apt install pkg-config
-
对于 Fedora、CentOS、RHEL 等:
sudo yum install pkgconfig 或者 sudo dnf install pkgconfig
-
-
重新安装
systemfonts
包:安装完
fontconfig
和freetype2
的开发库后,重新尝试安装systemfonts
包:install.packages("systemfonts")
如果一切顺利,
systemfonts
应该能够成功安装。 -
处理警告信息:
如果安装过程中仍然出现警告信息,请使用
warnings()
函数查看详细信息。根据警告信息进一步调查可能的问题。