How can I package my Perl script to run on a machine without Perl? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T23:28:19Z http://stackoverflow.com/feeds/question/77278 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/77278/how-can-i-package-my-perl-script-to-run-on-a-machine-without-perl 5 How can I package my Perl script to run on a machine without Perl? szabgab 2008-09-16T21:23:41Z 2009-06-14T07:39:36Z <p>People also often ask "How can I compile Perl?" while what they really want is to create an executable that can run on machines even if they don't have Perl installed.</p> <p>There are several solutions, I know of:</p> <ol> <li><a href="http://www.indigostar.com/perl2exe.htm" rel="nofollow">perl2exe</a> of IndigoStar It is commercial. I never tried. Its web site says it can cross compile Win32, Linux, and Solaris.</li> <li><a href="http://www.activestate.com/Products/perl_dev_kit/" rel="nofollow">Perl Dev Kit</a> from ActiveState. It is commercial. I used it several years ago on Windows and it worked well for my needs. According to its web site it works on Windows, Mac OS X, Linux, Solaris, AIX and HP-UX.</li> <li><a href="http://search.cpan.org/dist/PAR/" rel="nofollow">PAR</a> or rather <a href="http://search.cpan.org/dist/PAR-Packer/" rel="nofollow">PAR::Packer</a> that is free and open source. Based on the test reports it works on the Windows, Mac OS X, Linux, NetBSD and Solaris but theoretically it should work on other UNIX systems as well. Recently I have started to use PAR for packaging on Linux and will use it on Windows as well.</li> </ol> <p>Other recommended solutions?</p> http://stackoverflow.com/questions/77278/how-can-i-package-my-perl-script-to-run-on-a-machine-without-perl/77325#77325 -2 Answer by Bruce for How can I package my Perl script to run on a machine without Perl? Bruce 2008-09-16T21:29:03Z 2008-09-16T21:29:03Z <p>You could use the <code>perlcc</code> tool that's shipped with most distributions of Perl. I've also found both <code>perl2exe</code> and Active State's Perl Dev kit useful for shipping Perl applications.</p> http://stackoverflow.com/questions/77278/how-can-i-package-my-perl-script-to-run-on-a-machine-without-perl/80777#80777 4 Answer by tsee for How can I package my Perl script to run on a machine without Perl? tsee 2008-09-17T07:23:28Z 2008-09-17T07:23:28Z <p>In addition to the three tools listed in the question, there's another one called <a href="http://www.cava.co.uk/" rel="nofollow">Cava Packager written by Mark Dootson, who has also contributed to <a href="http://par.perl.org" rel="nofollow">PAR</a> in the past. It only runs under Windows, has a nice Wx GUI and works differently from the typical three contenders in that it assembles all Perl dependencies in a source / lib directory instead of creating a single archive containing everything. There's a free version, but it's not Open Source. I haven't used this except for testing.</p> <p>As for PAR, it's really a toolkit. It comes with a packaging tool which does the dependency scanning and assembly of stand-alone executables, but it can also be used to generate and use so-called .par files, in analogy to Java's JARs. It also comes with <a href="http://search.cpan.org/dist/PAR-Repository-Client" rel="nofollow">client</a> and <a href="http://search.cpan.org/dist/PAR-Repository" rel="nofollow">server</a> for automatically loading missing packages over the network, etc. The <a href="http://steffen-mueller.net/talks/appdeployment/" rel="nofollow">slides of my PAR talk</a> at <a href="http://yapceurope.org/" rel="nofollow">YAPC::EU</a> 2008 go into more details on this. There's also an active mailing list: par at perl dot org</a>.</p> http://stackoverflow.com/questions/77278/how-can-i-package-my-perl-script-to-run-on-a-machine-without-perl/992376#992376 -1 Answer by mcwong for How can I package my Perl script to run on a machine without Perl? mcwong 2009-06-14T07:39:36Z 2009-06-14T07:39:36Z <p>I'm a Perl newbie and I just downloaded Cava Packager and that's the only one I found working. I've tried ActiveState 5.10.1005 and Strawberry Perl with PAR-Packager on Windows XP. pp just hangs in mid-stream and no executables created.</p> <p>Cava provides the only solution to creating exe on Windows so far. Thks.</p>