部署 shinyapp 时出错,包
Error deploying shinyapp, package
有没有人看到过这个错误并且知道该怎么办?我试过更新 shinyapps 包,但没有解决问题。我有闪亮的 0.10.2.1 版本和 shinyapps 的 0.3.61 版本,rstudio 版本 0.98.1074
Preparing to deploy application...Error: /v1/applications/?filter=account_id:18320&filter=name:nextword&count=100&offset=0 426 - shinyapps package out of date.
To update visit: https://github.com/rstudio/shinyapps
Execution halted
您应该使用 devtools 更新 shinyapps 包:
devtools::install_github('rstudio/shinyapps')
由于 shinyapps 包仅存在于 GitHub(不存在于 CRAN),使用 update.packages()
将不会更新 shinyapps 包。
Alex,我认为@kippandrew 的语法有误。你应该使用:
devtools::install_github('rstudio/shinyapps')
让我们知道什么有效。
P.S。在 shinyapps.io 仪表板上,Shiny 团队详细介绍了如何开始。获取 shinyapps 是第 2 步。
对于刚开始的人。第 1 步是让自己拥有开发工具。
install.packages('devtools')
有没有人看到过这个错误并且知道该怎么办?我试过更新 shinyapps 包,但没有解决问题。我有闪亮的 0.10.2.1 版本和 shinyapps 的 0.3.61 版本,rstudio 版本 0.98.1074
Preparing to deploy application...Error: /v1/applications/?filter=account_id:18320&filter=name:nextword&count=100&offset=0 426 - shinyapps package out of date.
To update visit: https://github.com/rstudio/shinyapps
Execution halted
您应该使用 devtools 更新 shinyapps 包:
devtools::install_github('rstudio/shinyapps')
由于 shinyapps 包仅存在于 GitHub(不存在于 CRAN),使用 update.packages()
将不会更新 shinyapps 包。
Alex,我认为@kippandrew 的语法有误。你应该使用:
devtools::install_github('rstudio/shinyapps')
让我们知道什么有效。
P.S。在 shinyapps.io 仪表板上,Shiny 团队详细介绍了如何开始。获取 shinyapps 是第 2 步。
对于刚开始的人。第 1 步是让自己拥有开发工具。
install.packages('devtools')