Download & Installation¶
Download¶
The latest stable release of SHazaM can be downloaded from CRAN or Bitbucket.
Installing Released Versions¶
The simplest way to install SHazaM is via CRAN:
install.packages("shazam")
Downloaded source builds from Bitbucket may be installed in the usual way:
install.packages("shazam_x.y.z.tar.gz", repos=NULL, type="source")
Building Development Versions¶
To build from the source code, first install the build dependencies:
install.packages(c("devtools", "roxygen2", "testthat", "knitr", "rmarkdown", "Rcpp"))
To install the latest development code via devtools:
library(devtools)
install_bitbucket("kleinstein/shazam@master")
Note, using install_bitbucket
will not build the documentation. To generate the
documentation, clone the repository and build as normal using devtools,
roxygen and knitr:
library(devtools)
install_deps()
document()
build()
install()