unable to install rvest package

前端 未结 1 1416
南笙
南笙 2021-02-13 01:06

I need to install rvest package for R version 3.1.2 (2014-10-31)

I get these errors:

    checking whether the C++ compiler supports the long long type...         


        
相关标签:
1条回答
  • 2021-02-13 01:36

    My system is Ubuntu 14.04 with R:3.2.3, and I had the same problem.

    Then I checked err meg and tried to install library of libcurl4-openssl-dev and libxml2-dev:

    sudo apt-get install libcurl4-openssl-dev
    
    sudo apt-get install libxml2-dev
    

    After installed, install.packages("rvest") was successful.

    0 讨论(0)
提交回复
热议问题