From 8078d1d47c8f86f041f664ec0cd0b9cd65ffce19 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. --- pipenv/core.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pipenv/core.py b/pipenv/core.py index 4d1b559da8..a8e00800e6 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: {1}'.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 = [