Spreadsheet::WriteExcel,Spreadsheet:ParseExcel - Perl

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • bharatesh
    New Member
    • Jan 2014
    • 1

    Spreadsheet::WriteExcel,Spreadsheet:ParseExcel - Perl

    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
  • RonB
    Recognized Expert Contributor
    • Jun 2009
    • 589

    #2
    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

    Working...