devtools::install_github Error in function (type, msg, asError = TRUE) :

前端 未结 3 1435
刺人心
刺人心 2020-12-30 11:50

I\'m trying to install a package via devtools::install_github for the first time

l@np350v5c:~$ R --vanilla
> library(devtools)

Attaching pac         


        
3条回答
  •  误落风尘
    2020-12-30 12:40

    Actually, I had the same issue and after installing RCurl it worked.

    In order to install RCurl in ubuntu, write the following in your terminal:

    sudo apt-get install libcurl4-openssl-dev
    

    Then in R:

    install.packages('RCurl')
    

    And that's it!

提交回复
热议问题