diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 827167f6..10506bc0 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,12 +1,14 @@ -Be sure to check the existing issues, both open and closed. +Be sure to check the existing issues (both open and closed!). Describe the issue briefly here. -##### Describe your environment +Please run `$ python -m pipenv.help`, and paste the results here. -1. OS Type -1. Python version: `$ python -V` -1. Pipenv version: `$ pipenv --version` +If you're on MacOS, just run the following: + + $ python -m pipenv.help | pbcopy + +------------ ##### Expected result diff --git a/pipenv/help.py b/pipenv/help.py index 57234792..24135b17 100644 --- a/pipenv/help.py +++ b/pipenv/help.py @@ -10,7 +10,9 @@ from .pep508checker import lookup def main(): print('Pipenv version: `{0!r}`'.format(__version__)) + print() print('Pipenv location: `{0!r}`'.format(os.path.dirname(pipenv.__file__))) + print() print('Python location: `{0!r}`'.format(sys.executable)) print() print('Other Python installations in `PATH`:')