Please can any one help me how to install Spreadsheet::Wr iteExcel,Spread sheet:ParseExce l - Perl in linux machine using unix commands..pleas e
Spreadsheet::WriteExcel,Spreadsheet:ParseExcel - Perl
Collapse
X
-
Perl modules can be installed either by the standard *nix process which is to donwnload the tar file, extract it and cd into the extracted dir then run these commands (after reading the README and/or INSTALL files which gives needed details):
./confugure - this step is not always needed
make
make test
make install
Or, you can use the cpan (or cpanm) utility:
cpan install Spreadsheet::Wr iteExcel
cpan install Spreadsheet:Par seExcel
The use of the install keyword is not required.
Comment