English 中文(简体)
Perl GUI应用程序-创建Exe
原标题:Perl GUI App - Creating Exe
  • 时间:2011-05-26 16:21:34
  •  标签:
  • perl
  • exe

我已经用Perl编写了GUI应用程序。现在我想为Windows创建可执行文件。我搜索了一下,发现我们可以使用Perl2Exe、PerlApp和Par Packer。但前两个是有报酬的。第三个,即PerlPar是许多人甚至在这个论坛上建议的。但问题是我不知道如何使用这个。我使用的是Activestate Perl 5.10。我在PPM中找不到Par Packer。在其中一个线程中,有人建议使用PPM安装Mingw,使用cpan安装Par Packer。但即使是我也无法安装Mingw,因为我在PPM中找不到。所以我别无选择地离开了。欢迎提出任何建议。提前感谢

更新:对于可能最终来到这里的人,请使用Cava Packer如果要为您的perl脚本创建可执行文件。

最佳回答

您可以在其他PPM存储库中找到Par::Packer PPM。最容易找到PPM的地方是kobesearch。

Par::Packer的kobesearch列表显示,版本0.991的PPM可在贿赂PPM存储库中获得,1.008在Trouchelle,0.977在uwinnepeg。

只需将Trouchelle repo添加到PPM源列表中,就可以轻松安装。

问题回答

MinGW不是通过PPM安装的Perl模块,它是一个允许您编译另一个Perl版本的系统,然后用于安装Par::Packer





相关问题
Why does my chdir to a filehandle not work in Perl?

When I try a "chdir" with a filehandle as argument, "chdir" returns 0 and a pwd returns still the same directory. Should that be so? I tried this, because in the documentation to chdir I found: "...

How do I use GetOptions to get the default argument?

I ve read the doc for GetOptions but I can t seem to find what I need... (maybe I am blind) What I want to do is to parse command line like this myperlscript.pl -mode [sth] [inputfile] I can use ...

Object-Oriented Perl constructor syntax and named parameters

I m a little confused about what is going on in Perl constructors. I found these two examples perldoc perlbot. package Foo; #In Perl, the constructor is just a subroutine called new. sub new { #I ...

Where can I find object-oriented Perl tutorials? [closed]

A Google search yields a number of results - but which ones are the best? The Perl site appears to contain two - perlboot and perltoot. I m reading these now, but what else is out there? Note: I ve ...

热门标签