Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

more detailed installation instructions in README #54

Merged
merged 1 commit into from
May 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 16 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,24 @@ See the [nimble user manual](https://r-nimble.org/html_manual/cha-mcmc.html#subs

Additional information about the `nimble`package itself is available at the [nimble website](https://r-nimble.org/).

<!--
The nimbleHMC package must be used with nimble version XXXX or
higher. To check the current version number of nimble use `packageVersion("nimble")`.
-->

### Package Requirements

`nimbleHMC` must be used with version `1.0.0` or higher of the `nimble` package.
### Installation and Package Requirements

Use of `nimbleHMC` requires installation of the core `nimble` package. Detailed instructions for installing `nimble` are available in the [`nimble` package README](https://github.com/nimble-dev/nimble/blob/devel/README.md).

`nimbleHMC` must be used with version `1.0.0` or higher of `nimble`, or the latest version available on CRAN. To check the version number of the currently installed version of `nimble`, use:

```r
packageVersion("nimble")
```

The `nimbleHMC` package itself can be installed directly from CRAN, using:

```r
install.packages("nimbleHMC")
```


<!--
library(remotes)
Expand Down
Loading