From 3f95273a959ca2c98dbd78ed93269b93344b8aec Mon Sep 17 00:00:00 2001 From: Ian Bicking Date: Wed, 5 Nov 2008 15:42:26 -0600 Subject: [PATCH] [svn r21267] fix pip freeze examples --- docs/index.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.txt b/docs/index.txt index 9ed856d9d..61554f484 100644 --- a/docs/index.txt +++ b/docs/index.txt @@ -130,7 +130,7 @@ tell you what all the exact versions are. To create a new requirements file from a known working environment, use:: - $ pip freeze -o stable-req.txt + $ pip freeze stable-req.txt This will write a listing of *all* installed libraries to ``stable-req.txt`` with exact versions for every library. You may want to edit the file down after @@ -140,7 +140,7 @@ stable starting point for constructing your requirements file. You can also give it an existing requirements file, and it will use that as a sort of template for the new file. So if you do:: - $ pip freeze -o stable-req.txt -r devel-req.txt + $ pip freeze stable-req.txt -r devel-req.txt it will keep the packages listed in ``devel-req.txt`` in order and preserve comments.