Monday, June 16, 2008

Perl module installation

Here I am installing XML::Simple.

The easiest way to install is using the CPAN shell. To
download, unpack, test and install the latest stable version:

perl -MCPAN -e shell
cpan install XML::Simple

You can of course download the package, extract and install it manually
(You need nmake.exe for this on windows):

perl Makefile.PL
make
make test
make install


0 comments: