snippetbashTip
pip freeze — List installed packages in requirements format. More information: <https://pip.pypa.io/en/stable/cli
Viewed 0 times
commandformatclipip freezerequirementslistinstalledpackages
Problem
How to use the
pip freeze command: List installed packages in requirements format. More information: <https://pip.pypa.io/en/stable/cli/pip_freeze/>.Solution
pip freeze — List installed packages in requirements format. More information: <https://pip.pypa.io/en/stable/cli/pip_freeze/>.List installed packages:
pip freezeWrite installed packages to the
requirements.txt file:pip freeze > requirements.txtList installed packages in a virtual environment, excluding globally installed packages:
pip freeze {{[-l|--local]}}List installed packages in the user-site:
pip freeze --userList all packages, including
pip, distribute, setuptools, and wheel (they are skipped by default):pip freeze --allCode Snippets
List installed packages
pip freezeWrite installed packages to the `requirements.txt` file
pip freeze > requirements.txtList installed packages in a virtual environment, excluding globally installed packages
pip freeze {{[-l|--local]}}List installed packages in the user-site
pip freeze --userList all packages, including `pip`, `distribute`, `setuptools`, and `wheel` (they are skipped by default)
pip freeze --allContext
tldr-pages: common/pip freeze
Revisions (0)
No revisions yet.