From 7910eca658350e06c28e9bcd62af4d2cee277481 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 20 Sep 2017 19:50:57 -0400 Subject: [PATCH] attempt to fix windows Signed-off-by: Kenneth Reitz --- pipenv/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipenv/cli.py b/pipenv/cli.py index c486cd47..73f60cc5 100644 --- a/pipenv/cli.py +++ b/pipenv/cli.py @@ -1161,7 +1161,7 @@ def pip_install( no_deps = '--no-deps' if no_deps else '' pip_command = '"{0}" install {3} {1} -i {2} --exists-action w'.format( - which_pip(allow_global=allow_global), + shellquote(which_pip(allow_global=allow_global)), install_reqs, source['url'], no_deps