我需要在perl + gtk2应用程序中使用WebKit。在CPAN上找到了一个包Gtk2 :: WebKit,但无法使其正常工作。
cpan> install Gtk2::WebKit
给出以下输出:
Package webkit-1.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `webkit-1.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'webkit-1.0' found
at inc/Module/Install/PRIVATE/WebKit.pm line 24
*** can not find package webkit-1.0
*** check that it is properly installed and available in PKG_CONFIG_PATH
at inc/Module/Install/PRIVATE/WebKit.pm line 24
No 'Makefile' created'YAML' not installed, will not store persistent state
FLORA/Gtk2-WebKit-0.09.tar.gz
/usr/bin/perl Makefile.PL INSTALLDIRS=site -- NOT OK
Running make test
Make had some problems, won't test
Running make install
Make had some problems, won't install
Failed during this command:
FLORA/Gtk2-WebKit-0.09.tar.gz : writemakefile NO -- No 'Makefile' created
看起来好像cpan无法找到webkit,但我不知道如何解决这个问题(我第一次使用perl和cpan)。
环境:perl 5.12.4,ubuntu 11.10
答案 0 :(得分:6)
安装libwebkitgtk-devel
:sudo apt-get install libwebkitgtk-devel
。
答案 1 :(得分:5)
sudo apt-get install libwebkitgtk-dev
答案 2 :(得分:3)
对于Debian / Ubuntu等,要安装的软件包名称为 libwebkitgtk-dev 。 对于OpenSuse和其他基于RPM的系统,软件包名称为 libwebkitgtk-devel 。