I run IndigoPerl which comes with a binary version of Apache. Anyway, it comes with a nifty little perlscript embedded in a bat file that goes something like:
@rem = '--*-Perl-*-- @echo off if "%OS%" == "Windows_NT" goto WinNT perl -x -S "%0" %1 %2 %3 %4 %5 %6 %7 %8 %9 goto endofperl :WinNT perl -x -S "%0" %* if NOT "%COMSPEC%" == "%SystemRoot%\system32\cmd.exe" goto endofperl if %errorlevel% == 9009 echo You do not have Perl in your PATH. goto endofperl @rem '; #!perl # dpm.pl V0.04 Dynamic Package Manager # Copyright (c) 2000 Indy Singh/IndigoSTAR Software all rights reserve +d BEGIN { $| = 1; open (STDERR, ">&STDOUT"); } use strict; use ExtUtils::Install (); use Config; use File::Path; # mkpath, rmtree
Anyway, that nifty little perlscript is much like Win32 ActivePerls ppm(Perl Package Manager) and takes the hassle out of managing your perl modules/packages. You should be able to adapt it to whatever environment you're using since alls it needs is write permission ;)

<SHAMELESSPLUG>
You can check out my review here to get an idea how it(dpm) works. They even included a 'GUI'(browser) front end for it.
</SHAMELESSPLUG>

Update: on Fastolfe point,
why don't you just build the exact replica of your 'production' machine, develop 'your film' and then just switch the cable's.

"cRaZy is co01, but sometimes cRaZy is cRaZy".
                                                      - crazyinsomniac


In reply to (crazyinsomniac) Re: Removing Modules by crazyinsomniac
in thread Removing Modules by Maclir

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.