Connect to API
Install Vectice
# Install the latest vectice package
pip install vectice
# Install a specific vectice version
pip install vectice==24.1
# You can chain multiple installations
pip install vectice["s3, gcs"]# Step 1: Install reticulate if not already installed
install.packages("reticulate")
# Step 2: Install the latest version of Vectice
reticulate::py_install("vectice", pip = TRUE)
# Or install a specific version of Vectice
reticulate::py_install("vectice==<desired_version_number>", pip = TRUE)