R install package loaded namespace

后端 未结 3 1238
迷失自我
迷失自我 2021-01-21 08:09

I would like to install the package plotly in RStudio and got a error message.

install.packages(\"~/Desktop/plotly_4.5.2.tar.gz\", repos = NULL, type = \"source\

3条回答
  •  清歌不尽
    2021-01-21 09:13

    sometimes you just did not restart your R studio after update. For example,

    update.packages(ask=F)
    

    After this, you should restart your R studio. Then

    devtools::install_github("RcppCore/Rcpp")
    

提交回复
热议问题