Cannot install devtools package after upgrading R

后端 未结 1 1704
無奈伤痛
無奈伤痛 2021-01-13 06:12

I have just upgraded to R 3.2.1, and can no longer install the devtools package.

I get the following output:

install.packages(\'devtools\')
         


        
1条回答
  •  被撕碎了的回忆
    2021-01-13 06:49

    The error message says:

    there is no package called ‘curl’

    Run:

    install.packages(c('devtools','curl'))
    

    Then try library('devtools')

    If any other error persists, then update your post.

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