pip

Package installer for Python - downloads and installs packages.


Using pip Locally

Ensure the Desktop App is installed, running, and configured for pip.

Connect Desktop App →

Simply use your standard commands - the Desktop App handles authentication automatically:

Download:

pip install <package-name>

Alternatively: Manual Configuration

1. Generate an Access Token

Create an access token →

2. Configure

Create ~/.config/pip/pip.conf (Linux/macOS) or %APPDATA%\pip\pip.ini (Windows):

[global]
index-url = https://<your-fly-username>:<your-fly-token>@<your-fly-subdomain>.jfrog.io/artifactory/api/pypi/pypi/simple

3. Download

pip install <package-name>

Using pip in CI/CD

pip is fully supported in GitHub Actions workflows configured with JFrog Fly.

Learn how to configure GitHub Actions →


For publishing packages, see Twine → | Back to Python →