Python Dependencies via Pip
Last updated November 06, 2024
Table of Contents
This guide outlines how to fully utilize Heroku’s support for specifying dependencies for your Python application via pip
.
Heroku’s pip
support is very transparent. Any requirements that install locally with the following command will behave as expected on Heroku:
$ pip install -r requirements.txt
The basics
To specify Python package dependencies on Heroku via pip, add a pip requirements file named requirements.txt
to the root of your repository.
Example requirements.txt
:
Django==4.1.7
gunicorn==20.1.0
Best practices
If you follow these simple recommendations, your application builds will be deterministic:
- All package versions should be explicitly specified.
- All secondary dependencies should be explicitly specified.
This will ensure consistent build behavior when newer package versions are released.
Git-backed distributions
Anything that works with a standard pip requirements file will work as expected on Heroku.
Thanks to pip’s Git support, you can install a Python package that is hosted on a remote Git repository.
For example:
git+https://github.com/certifi/python-certifi
If your package is hosted in a private Git repository, you can use HTTP Basic Authentication:
git+https://user:password@github.com/nsa/secret.git
You can also specify any Git reference (e.g. branch, tag, or commit) by appending an @
to your URL:
git+https://github.com/certifi/python-certifi@develop
Optionally, you can install a dependency in “editable” mode, which will link to a full clone of the repository. This is recommended for Git-backed distributions that rely on upstream changes, as well as larger repositories.
The egg
fragment is only valid with editable requirements.
-e git+https://github.com/django/django.git#egg=django
Remote file-backed distributions
You can also install packages from remote archives.
For example:
https://site.org/files/package.zip
This can be useful in many situations. For example, you can utilize GitHub’s tarball generation for repositories with large histories:
https://github.com/django/django/tarball/master
Local file-backed distributions
Pip can also install a dependency from your local codebase. This is useful with making custom tweaks to an existing package.
You can use Git Submodules to maintain separate repositories for your File-backed dependencies. Git modules will automatically be resolved when you push your code to Heroku.
To add a local dependency in requirements.txt
, specify the relative path to the directory containing setup.py
:
./path/to/distribution
If you make changes to the library without bumping the required version number, however, the changes will not be updated at runtime. You can get around this by installing the package in editable mode:
-e ./path/to/distribution
Private indexes
To point to a custom package repository index, you can add the following to the top of your requirements file:
-i https://my-index.example.tld/mypath/
All dependencies specified in that requirements file will resolve against that index.
Cascading requirements files
If you would like to utilize multiple requirements files in your codebase, you can include the contents of another requirements file with pip:
-r ./path/to/prod-requirements.txt
We do not recommend this approach, but it is available to you.