我正在使用 Ubuntu Studio 14.04,并尝试升级 Subtitle Editor,其在存储库中的版本是 0.41.0,尽管如此,正如我所看到的这里,0.51.0 版本已于四月发布。
因此,我下载了它,并且在运行./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
并不能解决问题。
我该如何继续?
答案1
尝试安装 enchant 的开发组件。sudo apt-get install libenchant-dev
这通常是从源代码构建软件时所需要的:包(enchant
)包含二进制文件和运行时库,但通常构建依赖于该特定库的软件所需的标头会拆分成一个-dev
包。