Sophie

Sophie

distrib > Mageia > 7 > aarch64 > by-pkgid > 323571ac64117e17388f52b337402056 > files > 1071

python3-pip-19.0.3-1.3.mga7.noarch.rpm


.. _`pip freeze`:

pip freeze
-----------

.. contents::

Usage
*****

.. pip-command-usage:: freeze


Description
***********

.. pip-command-description:: freeze


Options
*******

.. pip-command-options:: freeze


Examples
********

#. 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


#. 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