美文网首页
linux环境下git的安装

linux环境下git的安装

作者: auzqy | 来源:发表于2019-06-09 16:57 被阅读0次

    下载

    下载地址

    参考

    1. https://git-scm.com/book/zh/v1/起步-安装-Git

    报错解决

    执行make prefix=/usr/local all时报错如下

    Can't locate ExtUtils/Embed.pm in @INC (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .).
    

    解决方式

    # 安装perl-ExtUtils-Embed:
    yum install perl-ExtUtils-Embed -y
    # 成功安装后,再此执行
    make prefix=/usr/local all
    

    相关文章

      网友评论

          本文标题:linux环境下git的安装

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