2019-09-11 05:57:47 -06:00
|
|
|
diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py
|
2020-07-13 23:53:50 -06:00
|
|
|
index f3152a5..52f6312 100644
|
2019-09-11 05:57:47 -06:00
|
|
|
--- a/Lib/ensurepip/__init__.py
|
|
|
|
+++ b/Lib/ensurepip/__init__.py
|
2020-07-13 23:53:50 -06:00
|
|
|
@@ -116,7 +116,7 @@ def _bootstrap(*, root=None, upgrade=False, user=False,
|
2019-09-11 05:57:47 -06:00
|
|
|
additional_paths.append(os.path.join(tmpdir, wheel_name))
|
|
|
|
|
|
|
|
# Construct the arguments to be passed to the pip command
|
2020-07-13 23:53:50 -06:00
|
|
|
- args = ["install", "--no-cache-dir", "--no-index", "--find-links", tmpdir]
|
|
|
|
+ args = ["install", "-I", "--no-cache-dir", "--no-index", "--find-links", tmpdir]
|
2019-09-11 05:57:47 -06:00
|
|
|
if root:
|
|
|
|
args += ["--root", root]
|
|
|
|
if upgrade:
|