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
pipcompatibility API:uv pip install <PACKAGE>
Where
<PACKAGE>is the name of the package you want to install. For example:uv pip install flask