Perl: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 2: | Line 2: | ||
* [https://opensource.com/article/18/7/perlbrew Getting started with Perlbrew] | * [https://opensource.com/article/18/7/perlbrew Getting started with Perlbrew] | ||
* [https://www.digitalocean.com/community/tutorials/how-to-install-perlbrew-and-manage-multiple-versions-of-perl-5-on-centos-7 How to Install Perlbrew and Manage Multiple Versions of Perl 5 on CentOS 7] | * [https://www.digitalocean.com/community/tutorials/how-to-install-perlbrew-and-manage-multiple-versions-of-perl-5-on-centos-7 How to Install Perlbrew and Manage Multiple Versions of Perl 5 on CentOS 7] | ||
= Install modules = | |||
* [https://www.thegeekstuff.com/2008/09/how-to-install-perl-modules-manually-and-using-cpan-command/ How To Install Perl Modules Manually and Using CPAN command] | |||
* [https://www.cyberciti.biz/faq/how-do-i-install-a-perl-module/ How do I install a Perl Module?] | |||
* [https://www.ostechnix.com/how-to-install-perl-modules-on-linux/ How To Install Perl Modules On Linux] | |||
<pre> | |||
sudo perl -MCPAN -e shell | |||
cpan> install DBI | |||
cpan> install DBD::mysql | |||
</pre> |
Latest revision as of 13:15, 6 May 2020
Perlbrew: multiple perls
- Getting started with Perlbrew
- How to Install Perlbrew and Manage Multiple Versions of Perl 5 on CentOS 7
Install modules
- How To Install Perl Modules Manually and Using CPAN command
- How do I install a Perl Module?
- How To Install Perl Modules On Linux
sudo perl -MCPAN -e shell cpan> install DBI cpan> install DBD::mysql