Tuesday, June 23, 2015

Install Perl Module online (live install)

To ease Perl modules installation, instruction can be used to install Perl module directly from CPAN.

LINUX:
 sudo perl -MCPAN -e 'install Net::SSH'

 sudo perl -MCPAN -e 'install DBD::Oracle'
...


Windows:
C:\Strawberry\perl\bin\perl.exe -MCPAN -e "install Spreadsheet::ParseExcel"
C:\Strawberry\perl\bin\perl.exe -MCPAN -e "install Spreadsheet::WriteExcel"

C:\Strawberry\perl\bin\perl.exe -MCPAN -e "install Net::Google::Spreadsheets"

No comments: