2015-04-13 51 views
1

我想從Github的開發頁面安裝shinyapps包來將我的應用程序部署到shinyapps.io服務。我用這個代碼爲http://shiny.rstudio.com/articles/shinyapps.html從github安裝shinyapps包時出錯

devtools::install_github('rstudio/shinyapps') 

描述。然而,我收到以下錯誤消息:

Downloading github repo rstudio/[email protected] 
Error in function (type, msg, asError = TRUE) : 
Failed to connect to api.github.com port 443: Connection refused 

,爲什麼,以及如何解決這個問題的任何想法?

回答

0

我就這一問題進行更深入的搜索,我發現我需要跑這條線:

install_github("hadley/pryr") 

,然後安裝shinayapps行:

devtools::install_github('rstudio/shinyapps') 

它的工作罰款我!

+0

我想你的意思是'devtools :: install_github(「hadley/pryr」)'? –