From 4577b89322b637216ad8ce7b68eb408146627af1 Mon Sep 17 00:00:00 2001 From: Coop Date: Wed, 28 Feb 2018 17:15:43 +1100 Subject: [PATCH] Updated docs - basic usage example pipenv workflow I'm new to python so I didn't know 'exit' was the thing to type to deactivate the pipenv shell, so I thought I would add that to the basic usage doc. --- docs/basics.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/basics.rst b/docs/basics.rst index d6444788..b4948172 100644 --- a/docs/basics.rst +++ b/docs/basics.rst @@ -139,7 +139,14 @@ Create a Pipfile.lock from the installed versions:: Install from that Pipfile.lock:: $ pipenv install --ignore-pipfile + +Activate the pipenv shell:: + $ pipenv shell + +Exit the pipenv shell:: + + $ exit .. _initialization: