diff --git a/pipenv/cli.py b/pipenv/cli.py index 7ca254c5..9ce8b34c 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -341,6 +341,10 @@ def do_create_virtualenv(three=None, python=None): elif three is True: python = 'python3' + # Windows! + if os.name == 'nt': + click.echo('{0} If you are running on Windows, you should use the {1} option instead.'.format(crayons.red('Warning!'), crayons.green('--python'))) + if python: cmd = cmd + ['-p', python]