我正在尝试在我的fedora 17上安装libpackedobjects。我尝试安装它的路径是home / libpackedobjects。我遵循的步骤是:
git clone git://gitorious.org/libpackedobjectsd/libpackedobjectsd.git
cd libpackedobjectsd
autoreconf -i
./configure
当我尝试运行./configure
时,我收到错误:
checking for LIBPACKEDOBJECTS... no
configure: error: Package requirements (libpackedobjects) were not met:
No package 'libpackedobjects' 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 LIBPACKEDOBJECTS_CFLAGS
and LIBPACKEDOBJECTS_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.
我明白路径无法找到,但不知道如何修复问题。有什么建议吗?
答案 0 :(得分:1)
从错误报告中可以看出:
checking for LIBPACKEDOBJECTS... no
configure: error: Package requirements (libpackedobjects) were not met:
No package 'libpackedobjects' found
因此,您必须安装软件包libpackedobjects
和libXml2
才能安装libpackedobjectsd
。
如果在安装depenedent软件包后仍然出现此错误,则可能存在PATH问题或链接问题。