From f5eca4d29c8dfde837c31ba0b09aeb9c8fa9f292 Mon Sep 17 00:00:00 2001 From: Erin O'Connell Date: Sun, 29 Oct 2017 13:57:53 -0600 Subject: [PATCH] updated docs with new uninstall option --- docs/basics.rst | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/basics.rst b/docs/basics.rst index 5de332c7..e0736e8c 100644 --- a/docs/basics.rst +++ b/docs/basics.rst @@ -139,7 +139,7 @@ Create a Pipfile.lock from the installed versions: Install from that Pipfile.lock: $ pipenv install --ignore-pipfile - + .. _initialization: @@ -270,11 +270,14 @@ $ pipenv uninstall ////////////////// ``$ pipenv uninstall`` supports all of the parameters in `pipenv install <#pipenv-install>`_, -as well as one additonal, ``--all``. +as well as two additonal options, ``--all`` and ``--all-dev``. - ``--all`` — This parameter will purge all files from the virtual environment, but leave the Pipfile untouched. + - ``--all-dev`` — This parameter will remove all of the development packages from + the virtual environment, and remove them from the Pipfile. + .. _pipenv_lock: