From fb5c4be763edc998af1a996a5c50ec3b95082b93 Mon Sep 17 00:00:00 2001 From: Tzu-ping Chung Date: Mon, 14 May 2018 00:57:38 +0800 Subject: [PATCH] Echo Pipfile location during init This should help the user know what's going on in situations like #2185. Because I'm not very bright --- pipenv/core.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pipenv/core.py b/pipenv/core.py index 4d1b559d..95377c73 100644 --- a/pipenv/core.py +++ b/pipenv/core.py @@ -884,6 +884,9 @@ def do_create_virtualenv(python=None, site_packages=False): crayons.normal(u'Creating a virtualenv for this project…', bold=True), err=True, ) + click.echo(u'Pipfile: {0}'.format( + crayons.red(project.pipfile_location, bold=True), + ), err=True) # The user wants the virtualenv in the project. if project.is_venv_in_project(): cmd = [