我正在尝试从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
有关为何以及如何解决此问题的任何想法?
答案 0 :(得分:0)
我在这个问题上进行了更深入的搜索,我发现我需要运行这一行:
install_github("hadley/pryr")
然后安装shinayapps的行:
devtools::install_github('rstudio/shinyapps')
它对我来说很好用!