------------------------------
Message: 3
Date: Thu, 24 Jul 2014 04:14:07 +0000 (UTC)
From: Ben Bolker <bbolker at gmail.com>
To: r-sig-mixed-models at r-project.org
Subject: Re: [R-sig-ME] Install flexlambda- and master-lme4 from
Github
Message-ID: <loom.20140724T061222-74 at post.gmane.org>
Content-Type: text/plain; charset=us-ascii
Christian Brauner <christianvanbrauner at ...> writes:
Hello,
is it possible to install the flexlambda and master branch of lme4 at the
same time:
library(devtools)
install_github("lme4", "lme4")
install_github("lme4", "flexlambda")
such that I can load them as different packages.
(Obviously not both at the
same time but for example in two different sessions; using "lme4" in one
and "flexlambda" in the other)?
devtools::dev_mode() might be useful (I haven't used it),
or install the packages to different libraries and specify
`lib.loc` when loading ... or clone the package to your system
and hack the DESCRIPTION file to create two different packages
with different names ...
------------------------------
Message: 4
Date: Thu, 24 Jul 2014 06:43:20 +0200
From: Tobias Heed <tobias.heed.uhh at gmail.com>
To: Ben Bolker <bbolker at gmail.com>
Cc: "r-sig-mixed-models at r-project.org"
<r-sig-mixed-models at r-project.org>
Subject: Re: [R-sig-ME] Install flexlambda- and master-lme4 from
Github
Message-ID: <119A164C-CD59-40B1-996E-C996BFFD044F at gmail.com>
Content-Type: text/plain; charset=us-ascii
Dear Christian,
I think the package manager packrat (implemented also in the project functionality of the RStudio beta that came out this monday) would enable you to do what you need.
Best, Tobias
On 24.07.2014, at 06:14, Ben Bolker <bbolker at gmail.com> wrote:
Christian Brauner <christianvanbrauner at ...> writes:
Hello,
is it possible to install the flexlambda and master branch of lme4 at the
same time:
library(devtools)
install_github("lme4", "lme4")
install_github("lme4", "flexlambda")
such that I can load them as different packages.
(Obviously not both at the
same time but for example in two different sessions; using "lme4" in one
and "flexlambda" in the other)?
devtools::dev_mode() might be useful (I haven't used it),
or install the packages to different libraries and specify
`lib.loc` when loading ... or clone the package to your system
and hack the DESCRIPTION file to create two different packages
with different names ...