0
Under review

failing to install slidify in Rstudio

Shylock Muyengwa 11 years ago updated by Khalid hussain 10 years ago 7
R version 3.1.0 (2014-04-10)
Platform: i386-w64-mingw32/i386 (32-bit)


locale:
[1] LC_COLLATE=English_United States.1252
[2] LC_CTYPE=English_United States.1252
[3] LC_MONETARY=English_United States.1252
[4] LC_NUMERIC=C
[5] LC_TIME=English_United States.1252


attached base packages:
[1] stats graphics grDevices utils datasets methods
[7] base


other attached packages:
[1] ggplot2_1.0.0


loaded via a namespace (and not attached):
[1] colorspace_1.2-4 digest_0.6.4 grid_3.1.0
[4] gtable_0.1.2 MASS_7.3-33 munsell_0.4.2
[7] plyr_1.8.1 proto_0.3-10 Rcpp_0.11.2
[10] reshape2_1.4 scales_0.2.4 stringr_0.6.2
[13] tools_3.1.0
Warning message:
package ‘ggplot2’ was built under R version 3.1.1
>
I have the same problem with R version 3.1.1. Here is the command line result of attempting to install it.
install.packages("slidify")
Installing package into ‘C:/Users/Patrick/Documents/R/win-library/3.1’
(as ‘lib’ is unspecified)
Warning in install.packages :
package ‘slidify’ is not available (for R version 3.1.1)


I cannot find a version that supports R version 3.1.x)
+2
Under review
Slidify is NOT on CRAN. So you will have to use the devtools package to install from github.

library(devtools)
install_github('ramnathv/slidify')
if someone got error. try this

library(devtools)
install_github('ramnathv/slidify',ref='dev')
I installed devtools 1.6.1 (and I installed Slidify afterwards independently just to make sure)  which are both listed in packages.  The error message seems to indicated the version of Slidify does not work with RStudio version 3.1.1, "package ‘slidify’ is not available (for R version 3.1.1". I cannot find a newer version of Slidify so I don't know if I need to revert back to an earlier version to get it to work or if I should just review the material via pdf files.

Did you use install_github('ramnath/slidify')? The error message you are getting shows up when you try to use install.packages.
I tried using install_github and got the follow:
  library('devtools')
  > install_github('ramnath/slidify')
  Downloading github repo ramnath/slidify@master
  Error in loadNamespace(name) : there is no package called ‘httr’

I'm not sure why the namespace is a problem.
I've downloaded slidify from github to a zip file and tried installing it again, but it results in the same error.
thank you for the help.
+1
You are missing the package httr. Run `install.packages("httr")` and then install slidify.