From 9c3ecff173aefb5a8f5d965bebb6867e7e1e1507 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 25 Sep 2017 11:28:53 -0400 Subject: [PATCH] more usage examples Signed-off-by: Kenneth Reitz --- pipenv/cli.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index 1a5ffbed..241d0f00 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -1408,12 +1408,16 @@ Usage Examples: Show a graph of your installed dependencies: $ {4} + Install a local setup.py into your virtual environment/Pipfile: + $ {5} + 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') + crayons.red('pipenv graph'), + crayons.red('pipenv install -e .') ) help = help.replace('Commands:', additional_help)