我正在使用 Ubuntu Studio 14.04,我正在尝试升级字幕编辑器,它在存储库中的版本是 0.41.0,尽管正如我在这里看到的那样,版本 0.51.0 自 4 月以来就已经发布了。
所以,我下载了它,并在运行 ./configure 时遇到了这个错误:
[...]
checking for ENCHANT... no
configure: error: Package requirements (enchant >= 1.4.0) were not met:
No package 'enchant' found
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables ENCHANT_CFLAGS
and ENCHANT_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
问题是 enchant 实际上已经安装了,版本 >=1.4.0:
alex@Sargon:~/Scaricati/subtitleeditor-0.51.0$ enchant -v
@(#) International Ispell Version 3.1.20 (but really Enchant 1.6.0)
跑步pkg-config enchant
并不能解决问题。
我该如何进行?
尝试安装附魔的开发组件。
sudo apt-get install libenchant-dev
. 从源代码构建软件时通常需要这样做:包 (enchant
) 包含二进制文件和运行时库,但通常构建依赖于该特定库的软件所需的标头被拆分到一个-dev
包中。