From ac48bf23eabc9eef1ade9cd22cf116783c6fbedb Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 13 Sep 2017 10:19:55 -0400 Subject: [PATCH] more advanced usage Signed-off-by: Kenneth Reitz --- docs/advanced.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/advanced.rst b/docs/advanced.rst index 161d89d3..faf6f7c3 100644 --- a/docs/advanced.rst +++ b/docs/advanced.rst @@ -376,6 +376,12 @@ environment into production. You can use ``pipenv lock`` to compile your depende your development environment and deploy the compiled ``Pipfile.lock`` to all of your production environments for reproducible builds. +.. note: + + If you'd like a ``requirements.txt`` output of the lockfile, run ``$ pipenv lock -r``. + This will include all hashes, however (which is great!). To get a ``requirements.txt`` + without hashes, use ``$ pipenv run pip freeze``. + ☤ Shell Completion ------------------