1

我正在尝试shinyapps从 Github 的开发页面安装该软件包,以将我的应用程序部署到该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

关于为什么以及如何解决这个问题的任何想法?

4

1 回答 1

0

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

install_github("hadley/pryr")

然后是安装 shinayapps 的行:

devtools::install_github('rstudio/shinyapps')

对我来说效果很好!

于 2015-04-13T07:40:48.137 回答