mirror of
https://github.com/pypa/pip
synced 2023-12-13 21:30:23 +01:00
47 lines
572 B
ReStructuredText
47 lines
572 B
ReStructuredText
|
|
.. _`pip freeze`:
|
|
|
|
pip freeze
|
|
-----------
|
|
|
|
.. contents::
|
|
|
|
Usage
|
|
*****
|
|
|
|
.. pip-command-usage:: freeze
|
|
|
|
|
|
Description
|
|
***********
|
|
|
|
.. pip-command-description:: freeze
|
|
|
|
|
|
Options
|
|
*******
|
|
|
|
.. pip-command-options:: freeze
|
|
|
|
|
|
Examples
|
|
********
|
|
|
|
1) Generate output suitable for a requirements file.
|
|
|
|
::
|
|
|
|
$ pip freeze
|
|
docutils==0.11
|
|
Jinja2==2.7.2
|
|
MarkupSafe==0.19
|
|
Pygments==1.6
|
|
Sphinx==1.2.2
|
|
|
|
|
|
2) Generate a requirements file and then install from it in another environment.
|
|
|
|
::
|
|
|
|
$ env1/bin/pip freeze > requirements.txt
|
|
$ env2/bin/pip install -r requirements.txt
|