Skip to contents

install_birdnet() installs the python package birdnet from PyPi into a virtual environment.

Usage

install_birdnet(
  ...,
  method = NULL,
  envname = "r-birdnet",
  new_env = identical(envname, "r-birdnet"),
  include_arrow = FALSE
)

Arguments

...

Further arguments passed to reticulate::py_install()

method

Installation method. Defaults to 'virtualenv' on macOS and Linux, and 'auto' on Windows. See reticulate::py_install() for more details.

envname

Name of the virtual environment.

new_env

If TRUE, any existing Python virtual environment specified by envname is deleted first.

include_arrow

If TRUE, also installs the Apache Arrow for both R and Python for optimized data conversion. Arrow can be installed later using install_arrow().