Install Vectice R library

You can use Vectice with R by installing and using the reticulate library. If you want to install a particular version of the vectice library in R, follow these steps:

  1. Install Reticulate (if not already installed):

    • Run install.packages("reticulate") to install the reticulate library in R.

  2. Install Vectice library

    1. For the Latest Vectice library:

      • Use reticulate::py_install("vectice", pip = TRUE) to install the specific version of the vectice library in R.

    2. For a specific version of Vectice:

      • Use reticulate::py_install("vectice==<desired_version_number>", pip = TRUE) to install the specific version of the vectice library in R.

      • Replace <desired_version_number> with the version number of vectice that you want to install.

In order for the library to properly work, the version should be greater than 23.3.6.

Here's the summarized version of the installation process for the vectice library in R:

# 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)