美文网首页Perl
perl包的安装

perl包的安装

作者: wo_monic | 来源:发表于2020-09-10 17:20 被阅读0次

    没有学习过perl语言,但是某些程序需要使用perl,就总结perl的一些包的安装方法
    在cpan https://metacpan.org/ 搜索对应的包的名称
    选择有黄色方框链接。
    在左边找到Download下载源码

    image.png
    下载完成后。
    tar -zxvf DBI-1.643.tar.gz
    cd DBI-1.643
    perl Makefile.PL 
    make
    make test
    make install
    

    如果是非root权限,需要指定目录。

    pecify the installation into ~/perl5
        cd perl-module/
        perl Makefile.PL PREFIX=~/perl5
        make
        make test
        make install
    echo 'export PERL5LIB="$HOME/perl5/:$PERL5LIB" '>>~/.bashrc
    

    更多非root安装perl包的方法,见参考

    如果是Ubuntu,且是root,可以直接使用apt安装
    apt-get install libswitch-perl

    相关文章

      网友评论

        本文标题:perl包的安装

        本文链接:https://www.haomeiwen.com/subject/edipektx.html