从github安装shinyapps包时出错

时间:2015-04-13 00:02:24

标签: r shiny shiny-server install.packages

我正在尝试从Github的开发页面安装shinyapps包,以将我的应用程序部署到shinyapps.io服务。我正在使用http://shiny.rstudio.com/articles/shinyapps.html

中描述的此代码
devtools::install_github('rstudio/shinyapps')

但是,我收到以下错误消息:

Downloading github repo rstudio/shinyapps@master
Error in function (type, msg, asError = TRUE)  : 
Failed to connect to api.github.com port 443: Connection refused

有关为何以及如何解决此问题的任何想法?

1 个答案:

答案 0 :(得分:0)

我在这个问题上进行了更深入的搜索,我发现我需要运行这一行:

install_github("hadley/pryr")

然后安装shinayapps的行:

devtools::install_github('rstudio/shinyapps')

它对我来说很好用!