如何在 Windows 上的 Perl 中安装 ExtUtils::PkgConfig?
我尝试过 cpan 和 cpanp shell,但我不断收到:
ExtUtils::PkgConfig requires the pkg-config utility, but it doesn't
seem to be in your PATH. Is it correctly installed?
pkg-config 实用程序是什么以及如何安装它?
更新:
- 操作系统:Windows
- 该模块是 File::Extractor 模块的先决条件
I've tried cpan and cpanp shell and I keep getting:
ExtUtils::PkgConfig requires the pkg-config utility, but it doesn't
seem to be in your PATH. Is it correctly installed?
What is the pkg-config utility and how do I install it?
Updates:
- OS: Windows
- This module is a prerequisite for the File::Extractor module
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
看这里:
http://gtk2-perl.sourceforge.net/win32/howto_build_gtk2perl_win32.html
我通过谷歌搜索 ExtUtils::PkgConfig 和“PPM”(Actvestates Perl Package Manager)找到了这个页面。
look here:
http://gtk2-perl.sourceforge.net/win32/howto_build_gtk2perl_win32.html
I found this page by googling for ExtUtils::PkgConfig and "PPM" (Actvestates Perl Package Manager).
pkg-config 用于编译应用程序和库。 它实际上用于插入正确的命令行参数。
它安装在大多数新版本的 Linux 上,但如果最初不存在,那么它也很常见,所以应该不难找到。
以下是在 ubuntu 上安装它的方法:
这是 wikipedia 页面:
http://en.wikipedia.org /wiki/Pkg-config
pkg-config is used for when you are compiling applcations and libraries. It's really used for inserting the right command line arguments.
It comes installed on most new releases of linux, but is pretty common if it's not there initially so it shouldn't be too hard to find.
Here's how to install it on ubuntu:
Here's the wikipedia page:
http://en.wikipedia.org/wiki/Pkg-config
http://pkgconfig.freedesktop.org/wiki/
pkg-config 是一个辅助工具,当编译应用程序和库。
根据您的操作系统,您也许可以获得二进制发行版(例如,在 Ubuntu 上尝试 apt-get),否则您可以从他们的网站获取源代码。
http://pkgconfig.freedesktop.org/wiki/
pkg-config is a helper tool used when compiling applications and libraries.
Depending on your OS, you might be able to get a binary distribution (try apt-get on Ubuntu, for example), otherwise you can get the source from their web site.
我在这里找到了 pkg-config 实用程序的 Windows 二进制文件:
http://ftp.gnome.org/pub/gnome/binaries/win32 /dependencies/
(链接在这里找到:http://www.go-evolution.org /Building_Evolution_on_Windows)
更新:来自 gtk.org 的直接下载链接:< a href="http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/pkg-config-0.23-2.zip" rel="nofollow noreferrer">pkg-config-0.23-2.zip
谢谢指点!
I found the Windows binaries for the pkg-config utility here:
http://ftp.gnome.org/pub/gnome/binaries/win32/dependencies/
(Link was found here: http://www.go-evolution.org/Building_Evolution_on_Windows)
Update: straight download link from gtk.org : pkg-config-0.23-2.zip
Thanks for the pointers!
pkg-config 的 Windows 二进制文件的更好来源是 gtk 站点
A better source for Windows binaries for pkg-config is the gtk site