Klausos Klausos
Klausos Klausos

Reputation: 16060

The error when publishing a shiny app

I want to publish my shiny app. For this I created an account in https://www.shinyapps.io/ Then, in RStudio, I go to Tools->Shiny Apps->Publish Apps and paste the token, account and secret information. Finally, I get the error:

Error: /v1/users/current/ 426 - shinyapps package out of date.
 To update visit: https://github.com/rstudio/shinyapps

enter image description here

When I try to install "shinyapps", the following message occurs:

install.packages("shinyapps")
Error in install.packages : Updating loaded packages

Restarting R session...

Error in tools:::httpdPort <= 0L : 
  comparison (4) is possible only for atomic and list types

Upvotes: 0

Views: 1439

Answers (1)

Yihui Xie
Yihui Xie

Reputation: 30174

As the error message says, please install shinyapps from https://github.com/rstudio/shinyapps It is not a package on CRAN, so you cannot install.packages().

Upvotes: 1

Related Questions