From 3bf9c4daeadb2f02ed19a49602b04840585d47de Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Fri, 22 Sep 2017 14:56:47 -0400 Subject: [PATCH] better verbose mode fixes #650 Signed-off-by: Kenneth Reitz --- pipenv/cli.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pipenv/cli.py b/pipenv/cli.py index e02ab6be..be0ecd4c 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -1202,6 +1202,9 @@ def pip_install( no_deps=True, verbose=False, block=True, index=None ): + if verbose: + click.echo(crayons.white('Installing {0!r}'.format(package_name), bold=True), err=True) + # Create files for hash mode. if (not ignore_hashes) and (r is None): r = tempfile.mkstemp(prefix='pipenv-', suffix='-requirement.txt')[1]