Which version of Perl should I use on Windows? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T23:51:42Zhttp://stackoverflow.com/feeds/question/71513http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/71513/which-version-of-perl-should-i-use-on-windows21Which version of Perl should I use on Windows?szabgab2008-09-16T11:53:41Z2009-09-21T08:14:06Z
<p>The <a href="http://win32.perl.org/" rel="nofollow">win32.perl.org</a> web site provides references to several Perl distributions for MS Windows.</p>
<p>For a long time I have been using ActivePerl from
<a href="http://www.activestate.com/" rel="nofollow">ActiveState</a> but recently I switched to
<a href="http://strawberryperl.com/" rel="nofollow">Strawberry Perl</a>.</p>
<p>IMHO The only advantage that Active Perl still has over Strawberry Perl is the fact that it comes with Perl Tk which means its easy to install
<a href="http://search.cpan.org/dist/Devel-ptkdb/" rel="nofollow">Devel::ptkdb</a> the graphical debugger. Other than that, I think Strawberry Perl has all the advantages.</p>
http://stackoverflow.com/questions/71513/which-version-of-perl-should-i-use-on-windows/71597#7159726Answer by Ovid for Which version of Perl should I use on Windows?Ovid2008-09-16T12:10:28Z2008-09-16T12:10:28Z<p>Strawberry Perl is just getting better and better. One problem I've repeatedly had with ActiveState is that my modules sometimes fail to install because I need an upgrade to a core module, but they won't allow that. Thus, everybody who <em>doesn't</em> use Windows can use my code, but they can't do that with ActiveState's Perl.</p>
<p>ActiveState also has a very dodgy build system which often fails to report exactly why a module failed to build. I got so tired of emailing and asking for this information that I eventually gave up. I want my code to run on Windows, but if ActiveState doesn't provide me with that information and doesn't give me any option for upgrading core modules, I just can't use it. Some of my modules have NO build failures on any operating system -- except those with ActiveState Perl. Support Strawberry Perl and just don't worry about ActiveState.</p>
<p>If ActiveState can (have?) fixed their build system and their 'no upgrade to core modules' policy, it's worth revisiting.</p>
http://stackoverflow.com/questions/71513/which-version-of-perl-should-i-use-on-windows/72066#7206614Answer by Michael Carman for Which version of Perl should I use on Windows?Michael Carman2008-09-16T13:17:39Z2008-09-16T13:17:39Z<p>I primarily use ActivePerl, but I really like where Strawberry Perl is headed. I love that the cpan shell "just works" and I don't have to jump through a bunch of hoops to install XS modules. (e.g. ExtUtils::FakeConfig, though that's less necessary in more recent ActivePerl builds.) I'm also excited about the possibility of Perl on a thumbdrive. The dev release of <a href="http://portableapps.com/node/12404#comment-73751" rel="nofollow">Portable Perl</a> is pretty usable already.</p>
<p>I agree that the main advantage of ActivePerl is Tk out of the box, but note that as of 5.10 ActivePerl no longer ships with Tk by default. It ships with Tkx instead.</p>
http://stackoverflow.com/questions/71513/which-version-of-perl-should-i-use-on-windows/72117#721172Answer by phreakre for Which version of Perl should I use on Windows?phreakre2008-09-16T13:24:49Z2009-06-19T17:14:58Z<p>ActiveState Perl has been considered the de facto Windows Perl for quite a while. While it has a lot of flaws and a lot of us use something else, it remains very popular. If you were building Perl code to be executed on a Windows machine (other than your own), I would consider writing it with an eye towards a default (or as default as I could get it) AS Perl installation executing it. Anything else and you are introducing barriers to entry for others trying to use your app later.</p>
http://stackoverflow.com/questions/71513/which-version-of-perl-should-i-use-on-windows/72325#723255Answer by Penfold for Which version of Perl should I use on Windows?Penfold2008-09-16T13:42:37Z2008-09-16T13:42:37Z<p>The future is definitely Strawberry Perl.
Whichever you chose though (and this problem is not unique to Windows), if you're distributing the end result to other machines, you're going to have to be careful as regards the installer/installation instructions you provide.</p>
http://stackoverflow.com/questions/71513/which-version-of-perl-should-i-use-on-windows/72763#7276313Answer by Darren Meyer for Which version of Perl should I use on Windows?Darren Meyer2008-09-16T14:16:29Z2008-09-16T14:16:29Z<p>There is no single-best Perl distribution. <a href="http://vanillaperl.com" rel="nofollow">Vanilla Perl</a> (relocatable, redistributable Perl), and it's more-developer-friendly <a href="http://strawberryperl.com/" rel="nofollow">Strawberry Perl</a> have significant potential.</p>
<p>However, there is a very good reason why <a href="http://activestate.com/perl" rel="nofollow">ActivePerl</a> is so very popular. The advantages mostly come in the form of ease of deployment for your end users (no compiler necessary to use their package manager, PPM). The ActiveState PDK (Perl Development Kit) is also a very nice way to pack a complete Windows binary that doesn't require any Perl to be installed on the user's machine.</p>
<p>Unfortunately, many very nice CPAN modules (like the Perl bindings for OpenSSL) are not available via ActiveState's repository.</p>
<p>Like most things, you should make your selection based on which distribution best meets your needs.</p>
http://stackoverflow.com/questions/71513/which-version-of-perl-should-i-use-on-windows/211277#2112772Answer by Ambrose for Which version of Perl should I use on Windows?Ambrose2008-10-17T07:08:51Z2008-10-17T07:08:51Z<p>I had major problems with Strawberry, and I felt there was no support. The good people at PerlMonks couldn't help me, and I gave up. If <a href="http://strawberryperl.com/support.html" rel="nofollow">this page</a> leaves you with a certain lack of confidence, there's your answer.</p>
http://stackoverflow.com/questions/71513/which-version-of-perl-should-i-use-on-windows/213030#2130303Answer by Rob Kam for Which version of Perl should I use on Windows?Rob Kam2008-10-17T17:20:22Z2009-01-03T10:59:22Z<p><a href="http://strawberryperl.com/" rel="nofollow">Strawberry Perl</a> is more like Perl on *nix. It comes with <a href="http://www.mingw.org/" rel="nofollow">MinGW</a> which could be useful on its own. The Perl modules can also be installed with either ppm or cpan.</p>
http://stackoverflow.com/questions/71513/which-version-of-perl-should-i-use-on-windows/706006#7060062Answer by reinierpost for Which version of Perl should I use on Windows?reinierpost2009-04-01T15:14:30Z2009-06-15T07:12:35Z<p>I always use Cygwin (xterms with bash are so much better than cmd windows) and the Perl that comes with it. I install Perl modules with the CPAN shell (the "cpan" command); it works fine.</p>
http://stackoverflow.com/questions/71513/which-version-of-perl-should-i-use-on-windows/1034585#10345850Answer by aczarnowski for Which version of Perl should I use on Windows?aczarnowski2009-06-23T19:19:09Z2009-06-23T19:19:09Z<p>The code I write lands in Fortune 500 companies so a "corporate" feeling is helpful. I've used ActivePerl so far, and it's worked fine for both internal tooling and for distribution to those large'ish customers.</p>
http://stackoverflow.com/questions/71513/which-version-of-perl-should-i-use-on-windows/1292256#12922560Answer by dufus for Which version of Perl should I use on Windows?dufus2009-08-18T07:07:15Z2009-08-18T07:07:15Z<p>Man, what is PAR pp ...because IIUC you'll need OEM to use their DLLs?? This answer was definitely NOT designed for <em>newbies</em> who seek clarity in choosing a Perl IDE for the Windows environment.</p>