Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > Perl > Perl Misc > Installing a perl module manually on windows

Reply
Thread Tools

Installing a perl module manually on windows

 
 
Nospam
Guest
Posts: n/a
 
      03-17-2008
does anyone know how I might be able to manually install an activeperl
module, for some reason I cannot install any module via activeperl perl
package manager, how can I manually install an activeperl module after
downloading the tar file?


 
Reply With Quote
 
 
 
 
benkasminbullock@gmail.com
Guest
Posts: n/a
 
      03-18-2008
On Mar 18, 8:34 am, "Nospam" <nos...@nospam.com> wrote:
> does anyone know how I might be able to manually install an activeperl
> module, for some reason I cannot install any module via activeperl perl
> package manager, how can I manually install an activeperl module after
> downloading the tar file?


Assuming that after you've extracted the file, you just have a .pm
file, usually it will run OK if you just put it in the same directory
as the Perl file which needs it. The default directory for Perl
modules with ActivePerl is

C:\Perl\lib

so you can just put your module into that directory. If your module is
called by something like

use Bogus::Nonsense;

then it would go into a directory like this:

C:\Perl\lib\Bogus\Nonsense.pm

If your module also has C files and XS files, then I don't know what
to do on Windows, except suggest getting Cygwin.
 
Reply With Quote
 
 
 
 
sisyphus
Guest
Posts: n/a
 
      03-18-2008
On Mar 18, 10:34*am, "Nospam" <nos...@nospam.com> wrote:
> does anyone know how I might be able to manually install an activeperl
> module


It's basically the same process as for installing modules on any other
OS:

1) Download the module's source from CPAN;
2) Extract the source to some location;
3) cd to the top level source folder;
4) run 'perl Makefile.PL', 'make test' and 'make install' (in that
order).

I use the term 'make' in a generic sense. I recommend that you install
'dmake' (freely available from CPAN) and use that instead of 'make'.
It's just a matter of installing 'dmake' as per the instructions that
ship with it, and then adding the location of 'dmake.exe' to your
path.

For many (most) modules, you'll also need a compiler - I recommend the
freely available MinGW port of gcc. Once installed, add C:\MinGW\bin
to your path (assuming that you installed into C:\MinGW). The dmake/
MinGW combo works fine with ActivePerl.

You could, if you like, save yourself some trouble and install
Strawberry Perl (which ships with both dmake and MinGW - and sets up
your path for you as part of the installation process).

Cygwin, as also suggested, is definitely an option. It, like
Strawberry Perl, also ships with its own make (called 'make') and
('gcc') compiler - but it's an inferior option in my opinion (unless
you particularly want to do unixy things on Windows).

You might find enlightenment at http://www.perlmonks.org/index.pl?node_id=614808,
but there's also an abundance of other useful information at perlmonks
- take a look through http://www.perlmonks.org/index.pl?node_id=519392
.

Cheers,
Rob
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
manually installing a ppm Nospam Perl Misc 0 02-08-2008 01:15 PM
Re: Manually installing PIL Fredrik Lundh Python 0 01-03-2008 08:53 AM
Manually installing PIL Ghirai Python 0 01-07-2007 02:19 PM
Manually "installing" those xpi extension files? Galaxy Firefox 6 07-03-2004 02:09 PM
installing mod manually lucas Perl Misc 6 12-29-2003 09:53 PM



Advertisments