perl_install_configure_cpan
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
perl_install_configure_cpan [2025/03/20 19:33] – removed - external edit (Unknown date) 127.0.0.1 | perl_install_configure_cpan [2025/03/20 19:33] (current) – ↷ Page name changed from install_configure_cpan to perl_install_configure_cpan juckins | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ==== CPAN (Perl) Repository Tips ==== | ||
+ | |||
+ | It seems the " | ||
+ | |||
+ | dnf install perl-App-cpanminus | ||
+ | | ||
+ | As root, to install: | ||
+ | cpanm -i Array::Diff | ||
+ | | ||
+ | As root, to remove: | ||
+ | cpanm -U Array::Diff | ||
+ | |||
+ | |||
+ | __Older notes:__ | ||
+ | |||
+ | First make sure CPAN or CPANPLUS is installed using yum. | ||
+ | |||
+ | Installing a module: | ||
+ | |||
+ | < | ||
+ | # cpan | ||
+ | cpan> install Net::SFTP | ||
+ | </ | ||
+ | |||
+ | Updating the currently installed version of CPAN: | ||
+ | < | ||
+ | # cpan | ||
+ | cpan> install CPAN | ||
+ | cpan> reload cpan | ||
+ | cpan> exit | ||
+ | </ | ||
+ | |||
+ | Uninstalling a module: | ||
+ | |||
+ | [[http:// | ||