pip-chill
Like `pip freeze` but lists only the packages that are not dependencies of installed packages.
What it is and what it does
pip-chill is a command-line tool that reads your current Python environment and outputs a requirements file containing only the packages you explicitly installed, omitting all their transitive dependencies. Unlike `pip freeze`, which lists every installed package regardless of whether you directly depend on it, pip-chill distinguishes between top-level packages and their dependencies, producing a cleaner and more maintainable requirements file.
The tool runs as a simple console command with optional flags to exclude version pinning, exclude pip-chill itself from the output, or include verbose dependency annotations. It has no runtime dependencies and supports Python 3.10 through 3.14, making it lightweight and easy to integrate into any Python workflow or CI/CD pipeline.
Use it for:
- Generate a clean requirements.txt for a new project by capturing only the packages you explicitly installed.
- Audit and reduce bloat in an existing requirements file by removing transitive dependencies that should be implicit.
- Maintain reproducible builds by pinning only direct dependencies and letting package managers resolve transitive versions.
- Compare what you actually need versus what pip freeze reports, to understand your project's true dependency surface.
- Automate requirements file generation in CI/CD pipelines where you want to track only top-level packages.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
pip-chill generates a minimal requirements file listing only the top-level packages you explicitly installed, filtering out their transitive dependencies.
Yes. pip-chill solves a real problem—pip freeze is too verbose for most use cases—with zero installation friction, no dependencies, active maintenance, and a copyleft license that poses no practical barrier to use as a development tool. Install it if you regularly manage Python requirements files and want a cleaner alternative to pip freeze.
Install
pip-chill on PyPI
pip
pip install pip-chilluv
uv add pip-chillpoetry
poetry add pip-chillInstalling pip-chill
Before you install
Low friction: pure Python wheel with no runtime dependencies. Actively maintained as of March 2026, with 595 repository stars and a stable release history since 2016.
License in practice
GPL-3.0-or-later (copyleft): you may use and modify pip-chill freely, but any derivative work or distribution must also be licensed under GPL-3.0 or later. This does not restrict use of the tool itself in your workflow.
Quickstart
$ pip install pip-chill
$ pip-chill
# outputs top-level packages with versions
$ pip-chill --no-version
# outputs top-level packages without versions
Requires Python 3.10 or later.
Verify before relying
- Whether the tool correctly handles all edge cases in dependency graph resolution (e.g., circular or conditional dependencies).
- Performance characteristics with very large installed environments (thousands of packages).
Package facts
| License | GPL-3.0-or-later (copyleft) |
| Python support | supports the current Python release (>=3.10) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | none |
| Maintenance | actively maintained — 152 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 247,554/month — #8,688 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: pip_chill-1.0.5-py3-none-any.whl
Keywords: pip-chill
Tags
More Software Development packages
Provides backported and experimental type hints…
permissive · top 100 on PyPI
numpyNumPy provides an N-dimensional array object…
permissive · top 100 on PyPI
fastapiFastAPI is a Python web framework for building…
permissive · top 100 on PyPI
annotated-docProvides a way to document function parameters,…
permissive · top 100 on PyPI
typerTyper builds command-line applications from…
permissive · top 1,000 on PyPI
distlibDistlib provides low-level packaging utilities…
permissive · top 1,000 on PyPI
pip-checkpip-check displays all installed packages and…
permissive · top 15,000 on PyPI
pipfileProvides a design specification and parser for…
permissive · top 15,000 on PyPI
pipreqsScans Python project source code to detect…
permissive · top 5,000 on PyPI
pipreqs-fivetranScans Python project source files and Jupyter…
permissive · top 15,000 on PyPI
pexPex generates standalone, executable Python…
permissive · top 5,000 on PyPI
pip-compile-multiCompiles multiple requirements files into…
permissive · top 15,000 on PyPI
pytest-localftpserverProvides pytest fixtures for running local FTP…
permissive · top 15,000 on PyPI
flake8-htmlA flake8 plugin that converts code style…
permissive · top 15,000 on PyPI
lorem-textGenerates dummy lorem ipsum text (sentences,…
permissive · top 15,000 on PyPI
requirementslibParses, builds, and converts between Pipfile…
permissive · top 15,000 on PyPI