I downloaded ramnathv-slidify-4260813.zip and copied it into C:/Users//Documents/R/win-library/3.5
On Windows 7 64bit machine
In Rstudio with Admin privileges I ran this:
install.packages("~/R/win-library/3.5/ramnathv-slidify-4260813.zip", repos = NULL, type = "win.binary") Installing package into ‘C:/Users//Documents/R/win-library/3.5’ (as ‘lib’ is unspecified) Warning in install.packages : cannot open compressed file 'ramnathv-slidify-4260813/DESCRIPTION', probable reason 'No such file or directory' Error in install.packages : cannot open the connection
How can I bypass the Error message above and install 'slidify' successfully on my machine?
thank you
r
from github using thedevtools
packagedevtools::install_github('ramnathv/slidify')
devtools::install_github('ramnathv/slidifyLibraries')
The answer to this question covers installing from GitHub stackoverflow.com/questions/24914510/… – NColl