我正在尝试从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有没有关于为什么和如何解决这个问题的想法?
发布于 2015-04-13 15:40:48
我对这个问题进行了更深入的研究,我发现我需要运行这行代码:
install_github("hadley/pryr")然后是安装shinayapps的命令行:
devtools::install_github('rstudio/shinyapps')它对我来说工作得很好!
https://stackoverflow.com/questions/29596083
复制相似问题