backports 1.1.1 package fails to install

后端 未结 2 1914
既然无缘
既然无缘 2020-12-11 21:40

I am unable to public my R notebook. When I try to publish, I get the following error:

Console~/

Console
R Markdown

    .../R Test 1/Fall Programming with          


        
2条回答
  •  盖世英雄少女心
    2020-12-11 22:00

    I'm getting a similar error with the backports R package. It's preventing the devtools package from installing a customised package which I've written.

    I fixed it by installing the previous version of backports:

    require(devtools)
    install_version("backports", version = "1.1.0")
    

提交回复
热议问题