neptune_install()
installs just the neptune-client python package and it's
direct dependencies.
neptune_install(method = c("auto", "virtualenv", "conda"),
conda = "auto",
version = "0.16",
envname = NULL,
extra_packages = c("psutil"),
restart_session = TRUE,
conda_python_version = "3.7",
...,
python_version = conda_python_version)
Installation method. By default, "auto" automatically finds a method that will work in the local environment. Change the default to force a specific installation method. Note that the "virtualenv" method is not available on Windows.
The path to a conda executable. Use "auto" to allow reticulate to automatically find an appropriate conda binary. See Finding Conda for more details.
Neptune-client version to install. Valid values include: + `"default"` installs `r default_version`
+ `"release"` installs the latest release version of neptune-client
+ A version specification like `"0.9"` or `"0.9.16"`. Note that if the patch version is not supplied, the latest patch release is installed
+ The full URL or path to a installer binary or python *.whl file.
The name, or full path, of the environment in which Python packages are to be installed. When NULL (the default), the active environment as set by the RETICULATE_PYTHON_ENV variable will be used; if that is unset, then the r-reticulate environment will be used.
Additional Python packages to install along with Neptune
Restart R session after installing (note this will only occur within RStudio).
python_version,conda_python_version the python version installed in the created conda environment. Ignored when attempting to install with a Python virtual environment.
other arguments passed to [reticulate::conda_install()] or [reticulate::virtualenv_install()], depending on the `method` used. Accepts `pip_ignore_installed=TRUE`.
The requested Python version. Ignored when attempting to install with a Python virtual environment.
Useful links:
Documentation https://docs.neptune.ai/
Report bugs at https://github.com/neptune-ai/neptune-r/issues
# NOT RUN {
neptune_install()
# }
Run the code above in your browser using DataLab