Functions to fit Bayesian distance sampling models using Nimble (https://github.com/nimble-dev/nimble). Inspired by the nimbleEcology package https://github.com/nimble-dev/nimbleEcology
GNU General Public License v3.0
7
stars
3
forks
source link
Installation does not work according to documentation #9
The README currently suggests installation of the package using:
devtools::install_github("scrogster/nimbleDistance", build_vignettes = TRUE, INSTALL_opts = "--no-multiarch")
However, this does not work as it should and there seem to be two reasons for it:
1) Does not automatically install dependencies (e.g. "Distance" package)
2) INSTALL_opts = "--no-multiarch" seems to be an invalid argument
I found that this alternative works fine:
remotes::install_github("scrogster/nimbleDistance")
Would be great if documentation could be updated with working installation instructions so others do not run into this issue. Thank you!
The README currently suggests installation of the package using:
devtools::install_github("scrogster/nimbleDistance", build_vignettes = TRUE, INSTALL_opts = "--no-multiarch")
However, this does not work as it should and there seem to be two reasons for it: 1) Does not automatically install dependencies (e.g. "Distance" package) 2)
INSTALL_opts = "--no-multiarch"
seems to be an invalid argumentI found that this alternative works fine:
remotes::install_github("scrogster/nimbleDistance")
Would be great if documentation could be updated with working installation instructions so others do not run into this issue. Thank you!