From c12dbade013c2ce54094780847f21fc866945c55 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 23 Jan 2017 21:23:08 -0500 Subject: [PATCH] windows is not supported --- pipenv/cli.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index 07e354d5..807b2c6a 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -483,10 +483,8 @@ def shell(three=None): # Spawn the Python process, and interact with it. try: shell = os.environ['SHELL'] - os.environ['SHELL'] = 'windows' except KeyError: click.echo(crayons.red('Windows is not currently supported.')) - click.echo('Run $ {0} instead.'.format(crayons.red(activate_virtualenv()))) sys.exit(1) click.echo(crayons.yellow('Spawning environment shell ({0}).'.format(crayons.red(shell))))