美文网首页
ubuntu 20.04 安装igraph包的曲折历程

ubuntu 20.04 安装igraph包的曲折历程

作者: R语言数据分析指南 | 来源:发表于2020-10-26 21:15 被阅读0次

    系统:ubuntu 20.04 ; R 4.0.3

    生命不止折腾不息,最近更新R包总提醒igraph无法更新,一时强迫症涌上心头,索性直接删除igraph,结果就悲剧了,直接导致很多需要使用的包无法加载。此时强迫症又涌上脑中,安装R包这些年,什么样的包没安装过,什么样的场面没有经历过,一遍遍安装,源码编译安装,各地论坛安装各种依赖环境,历时2小时终于搞定,突然间看到曙光。记录这一美好时刻

    sudo apt upgrade
    sudo apt-get install gcc
    sudo apt-get install libopenblas.so.0
    sudo apt-get install libgfortran-4.8-dev
    sudo apt-get install libopenblas-base
    sudo apt-get -f install libgfortran3
    sudo apt-get -f install libgfortran4
    

    参考:https://github.com/igraph/rigraph/issues/275#
    https://stackoverflow.com/questions/31286141/i-cant-install-libgfortran3-on-ubuntu
    https://github.com/sermanet/OverFeat/issues/10

    igraph.png

    相关文章

      网友评论

          本文标题:ubuntu 20.04 安装igraph包的曲折历程

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