unable to install rvest package

前端 未结 1 815
闹比i
闹比i 2021-02-13 00:45

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:39

    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)
提交回复
热议问题