Return the directory path to CmdStan that the instantiate
package uses.
stan_cmdstan_path(cmdstan_install = Sys.getenv("CMDSTAN_INSTALL", unset = ""))
Character of length 1, how to look for an installed copy of CmdStan. See https://wlandau.github.io/instantiate/ for details. Choices:
""
(default): look at the original value that the CMDSTAN_INSTALL
environment variable contained when instantiate
at the time
when it was installed.
If it was "implicit"
or "fixed"
, then choose
the corresponding option below. Otherwise, default to "implicit"
.
"implicit"
: Let the cmdstanr::cmdstan_path()
decide where
to look for CmdStan. As explained in the cmdstanr
documentation,
the output of cmdstanr::cmdstan_path()
depends
on the current value of the CMDSTAN
environment variable.
The cmdstanr
package must be installed. If it
is not installed, then stan_cmdstan_path()
returns the empty string ""
.
"fixed"
: Use the path to CmdStan that was originally
contained in Sys.getenv("CMDSTAN")
at the time when instantiate
was installed.
Character of length 1, directory path to CmdStan. The path
may or may not exist. Returns the empty string ""
if the path
cannot be determined.
Other packages:
stan_package_clean()
,
stan_package_compile()
,
stan_package_configure()
,
stan_package_model_files()
stan_cmdstan_path()
#> [1] "/home/runner/.cmdstan/cmdstan-2.35.0"