2019-09-11 05:57:47 -06:00
|
|
|
diff --git a/Lib/ensurepip/__init__.py b/Lib/ensurepip/__init__.py
|
2024-11-25 19:53:24 -07:00
|
|
|
index c5350df..7886cb2 100644
|
2019-09-11 05:57:47 -06:00
|
|
|
--- a/Lib/ensurepip/__init__.py
|
|
|
|
+++ b/Lib/ensurepip/__init__.py
|
2024-11-25 19:53:24 -07:00
|
|
|
@@ -159,7 +159,7 @@ def _bootstrap(*, root=None, upgrade=False, user=False,
|
|
|
|
copy2(bundled_wheel_path, tmp_wheel_path)
|
2019-09-11 05:57:47 -06:00
|
|
|
|
|
|
|
# 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:
|