|
Posted by benkasminbullock@gmail.com on March 18, 2008, 1:06 am
Please log in for more thread options
> 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.
|