Patrick Kopps
Results
1
comments of
Patrick Kopps
Ran into this issue also but found a workaround From https://cran.r-project.org/src/contrib/Archive/shiny/ previous versions 1.0.3 You can do it like so ```r download.file("http://cran.r-project.org/src/contrib/Archive/shiny/shiny_1.0.3.tar.gz", + dest="shiny_1.0.3.tar.gz") install.packages("shiny_1.0.3.tar.gz",repos=NULL,type="source") ``` Duly noted you will...