check_julia_ok {jlme} | R Documentation |
Set up Julia connection for jlme
check_julia_ok()
stop_julia()
jlme_status()
jlme_setup(
...,
add = NULL,
restart = FALSE,
threads = NULL,
verbose = interactive()
)
... |
Unused |
add |
A character vector of additional Julia packages to add and load. |
restart |
Whether to run |
threads |
Number of threads to start Julia with. Defaults to |
verbose |
Whether to alert setup progress. Defaults to |
Invisibly returns TRUE
on success
# Check whether Julia installation meets requirements
check_julia_ok()
# Connect to a Julia runtime for use with `{jlme}`
jlme_setup()
# Show information about the Julia runtime
jlme_status()
# Stop Julia runtime
stop_julia()