From 6d1252d9341c062fdc25da0c4e651ac258069730 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Thu, 14 Sep 2017 11:14:39 -0400 Subject: [PATCH] more help Signed-off-by: Kenneth Reitz --- pipenv/cli.py | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index 8bc1ee99..9d240015 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -1056,17 +1056,21 @@ Usage Examples: Create a new project using Python 3: $ {0} - Install all dependencies for a project (including dev): + Create a new project using Python 3.6, specifically: $ {1} - Create a lockfile: + Install all dependencies for a project (including dev): $ {2} - Show a graph of your installed dependencies: + Create a lockfile: $ {3} + Show a graph of your installed dependencies: + $ {4} + Commands:""".format( crayons.red('pipenv --three'), + crayons.red('pipenv --python 3.6'), crayons.red('pipenv install --dev'), crayons.red('pipenv lock'), crayons.red('pipenv graph')