Skip to content
Prev 9711 / 20628 Next

Trouble getting development version of lme4

Ross Boylan <ross at ...> writes:
'c:/Users/rdboylan/Documents/R/R-2.15.2/site-library'
[snip]
[snip]
You shouldn't need to.  Normally this happens when the package
is still loaded while you're trying to install, but ...
Well, the major problem with this is that the package is called
'minqa', not 'minga'.

  I do apologize that things are a bit of a mess right now; we've
been having trouble with the R-forge build because of some version/
dependency problems with Rcpp.

  A couple of general thoughts:

 * development is now happening on github.  If you want to install
the very latest version, and have the tools for compiling for source,
try

install.packages(c("Rcpp","RcppEigen","minqa","devtools"))
library("devtools")
install_github("lme4",user="lme4")

  Do please let us/me know, if you try it, whether that works
and/or whether you encounter problems. 

  In general for installing from R-forge but wanting to be
able to get the dependencies from CRAN as well:

 install.packages("lme4",repos=c("http://r-forge.r-project.org",
      getOption("repos")))

  In the very near future we hope to 
(1) build some updated binaries and put them up at 
http://lme4.r-forge.r-project.org/repos
(2) update the installation instructions (we may stop referring
to the automatically built r-forge binaries, since these will
start falling behind the version on github)

  Ben Bolker