Install Python Packages with uv

JFrog Artifactory Documentation

Products
JFrog Artifactory
Content Type
User Guide

You can use the uv client to install Python packages from Artifactory.

To resolve packages from Artifactory with uv:

  • Run one of the following commands:

    • Using the uv-native project API:

      uv add <PACKAGE>

      Where <PACKAGE> is the name of the package you want to resolve. For example:

      uv add pandas
    • Using the pip compatibility API:

      uv pip install <PACKAGE>

      Where <PACKAGE> is the name of the package you want to install. For example:

      uv pip install flask