MYaseen208
MYaseen208

Reputation: 23898

Installing or downloading BioCro R package

I wonder how to install or download Biocro package from Github.

I am on Windows 7.

Upvotes: 2

Views: 329

Answers (2)

David LeBauer
David LeBauer

Reputation: 31741

Context: BioCro is an R package that simulates plant growth.

In the process of merging two forks of the BioCro project, I removed this from GitHub (an unstable, archived version is on Zenodo, but that is not intended for use).

Now, we keep the stable version of BioCro on rForge because it allows the package to be installed in this way

install.packages("BioCro", repos="http://R-Forge.R-project.org")

Rforge makes it easier (for Windows users) because it does not require installing Rtools and devtools.

update We are in the process of making the development version available (and development process open) but need to first remove a few bits of proprietary code.

The install_github("ebimodeling/biocro") now gives the most recent stable version, which includes the ability to simulate the growth of Willow.

Upvotes: 3

Jake Burkhead
Jake Burkhead

Reputation: 6535

library(devtools)
install_github("biocro", "ebimodeling")

note: more recent versions of devtools require

install_github("ebimodeling/biocro")

Upvotes: 2

Related Questions