in reply to Basic @INC Question Related to Succesful Mod Installs
Hi o2bwise,
The first thing you want to do is read through $ perldoc perlmodinstall (http://perldoc.perl.org/perlmodinstall.html).
Next, you'll want to learn about using the CPAN console, which takes care of a lot of the confusing parts of installing modules.
For the particular module you are installing, the command would be: $ perl -MCPAN -e 'install libwww-perl'.
Also, its good that you've been given a newer perl as the default one you have is very old, but you are adding a layer of complexity here.
I suggest putting the new perl in your environment's path so you and all programs that you run that use perl use the new one. You said you found version 5.8.5 but you didnt say exactly where it was, but given it is installed in /opt/perl58/bin, you'd add that path to your environment path.
I also recommend NOT removing the old perl as pieces of your system probably depend on it.
Hope this helps getting you started, and if you have more specific questions dont hesitate :-)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Basic @INC Question Related to Succesful Mod Installs
by o2bwise (Scribe) on Nov 01, 2006 at 15:39 UTC | |
|
Re^2: Basic @INC Question Related to Succesful Mod Installs
by o2bwise (Scribe) on Nov 01, 2006 at 20:21 UTC |