From c2352029dce5b886b604ed8a41a8cced8c6886ca Mon Sep 17 00:00:00 2001 From: Tzu-ping Chung Date: Wed, 9 May 2018 02:26:10 +0800 Subject: [PATCH] Add a message to talk the user away from reporting --- pipenv/core.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pipenv/core.py b/pipenv/core.py index 79357ce5..4d1b559d 100644 --- a/pipenv/core.py +++ b/pipenv/core.py @@ -2012,6 +2012,14 @@ def do_install( err=True, ) click.echo(crayons.blue(format_pip_error(c.err)), err=True) + if 'setup.py egg_info' in c.err: + click.echo( + "This is likely caused by a bug in {0}. " + "Report this to its maintainers.".format( + crayons.green(package_name), + ), + err=True, + ) requirements_directory.cleanup() sys.exit(1) click.echo(