From 88a46531da1252bc16a49ca80947e448edb1fb49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20Crist=C3=B3bal=20L=C3=B3pez?= Date: Fri, 23 Oct 2015 01:21:20 +0200 Subject: [PATCH] List installed packages with "pip list" --- docs/dev/virtualenvs.rst | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/dev/virtualenvs.rst b/docs/dev/virtualenvs.rst index e7f3d0e..06b653c 100644 --- a/docs/dev/virtualenvs.rst +++ b/docs/dev/virtualenvs.rst @@ -100,9 +100,10 @@ the current state of the environment packages. To do this, run This will create a :file:`requirements.txt` file, which contains a simple list of all the packages in the current environment, and their respective -versions. Later it will be easier for a different developer (or you, if you -need to re-create the environment) to install the same packages using the -same versions: +versions. You can see the list of installed packages without the requirements +format using "pip list". Later it will be easier for a different developer +(or you, if you need to re-create the environment) to install the same packages +using the same versions: .. code-block:: console