in reply to Re^4: what is the difference between perl scripting in windows and linux
in thread what is the difference between perl scripting in windows and linux
I suppose if you never experienced the ease of "perl Makefile.PL, make, make install" on a module
Not only are you mistaken about my experience, it's much easier to use cpan Module, and even easier to do ppm install Module since it handles external libraries.
So
[Install external dependencies] [Find URL for Module] wget [URL for Module] perl Makefile.PL make test make install
becomes
ppm install Module
And if that fails,
[Install external dependencies] cpan Module
It's basically the equivalent of Debian's
apt-get install perl-module-lib
except it also works for builds of Perl other than the system build.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: what is the difference between perl scripting in windows and linux
by zentara (Cardinal) on Aug 04, 2010 at 19:16 UTC |