From 8d458d84a6a501fb7f06abdbc470f353ae6de25d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Padilla?= Date: Sat, 4 Mar 2017 09:21:53 -0500 Subject: [PATCH] Update README.rst --- README.rst | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 6d576e32..16d5fc75 100644 --- a/README.rst +++ b/README.rst @@ -98,14 +98,28 @@ Caveats Options: --where Output project home information. + --venv Output virtualenv information. + --rm Remove the virtualenv. --bare Minimal output. --three / --two Use Python 3/2 when creating virtualenv. + --python TEXT Specify which version of Python virtualenv should use. + -h, --help Show this message then exit. --version Show the version and exit. - --help Show this message and exit. + + + Usage Examples: + Create a new project using Python 3: + $ pipenv --three + + Install all dependencies for a project (including dev): + $ pipenv install --dev + + Create a lockfile: + $ pipenv lock Commands: check Checks PEP 508 markers provided in Pipfile. - install Installs a provided package and adds it to... + install Installs provided packages and adds them to... lock Generates Pipfile.lock. run Spawns a command installed into the... shell Spawns a shell within the virtualenv.