setup_fastf1 {f1dataR} | R Documentation |
Setup fastf1 connection
Description
Installs or optionally updates fastf1
Python package in the current active Python
environment/virtualenv/conda env.
More information on how to manage complex environment needs can be read in the reticulate docs, and tools for managing virtual environments are documented in virtualenv-tools and conda-tools
Usage
setup_fastf1(
...,
envname = "f1dataR_env",
new_env = identical(envname, "f1dataR_env")
)
Arguments
... |
Additional parameters to pass to py_install |
envname |
Optionally pass an environment name used. Defaults to package default of |
new_env |
Whether or not to completely remove and recreate the environment provided in |
Value
No return value, called to install or update fastf1
Python package.
Examples
## Not run:
# Install fastf1 into the currently active Python environment
setup_fastf1()
# Reinstall fastf1 and recreate the environment.
setup_fastf1(envname = "f1dataR_env", new_env = TRUE)
## End(Not run)
[Package f1dataR version 1.5.3 Index]