Options (1)
-l, --localbooleanList installed packages in a virtual environment, excluding globally installed packages
Example:
pip freeze {{[-l|--local]}}Examples (5)
List installed packages
Write 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 --allmade by @shridhargupta | data from tldr-pages