From 93e5300a18a365c54ee0651d1bcf9b7d8dacddd8 Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Fri, 9 Mar 2018 23:33:45 -0500 Subject: [PATCH] Default to python 3.6 if no python version passed --- pipenv/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/core.py b/pipenv/core.py index 1fa67da3..f5fc5129 100644 --- a/pipenv/core.py +++ b/pipenv/core.py @@ -976,7 +976,7 @@ def do_create_virtualenv(python=None, site_packages=False): cmd = [sys.executable, '-m', 'pipenv.pew', 'new', project.virtualenv_name, '-d'] if not python: - python = find_a_system_python('python') + python = find_a_system_python('3.6') or find_a_system_python('3') or sys.executable click.echo(u'{0} {1} {2}'.format( crayons.normal('Using', bold=True),