in reply to How to install without PPM?
Since you are likely to come across this problem again, I would point out that CPAN.pm is part of the standard Perl installation. You can run this from the command line by typing:
perl -MCPAN -e shell;To install a module type:
i filename
It helps to have a compiler installed, but not all modules require it.
Also, to perform the installation by hand, you'll likely want the files to end up in perl/site/lib, but that varies from system to system. But the commands for installing modules are usually the same. First go to the module's directory then type:
That's pretty much it, but depending on the module there might be more involved.perl Makefile.PL make install make test make
Another thing to be aware of is prerequisite modules. Be careful that the module you are installing doesn't require other modules to be in place first. The CPAN module can be configured to follow these dependencies & automagically install everything required.
Wait! This isn't a Parachute, this is a Backpack!
|
---|
Replies are listed 'Best First'. | |
---|---|
Setting paths when installing without PPM
by bikeNomad (Priest) on Jul 02, 2001 at 02:28 UTC |