回答編集履歴
1
--upgradeがかぶっていた件など
answer
CHANGED
@@ -1,6 +1,12 @@
|
|
1
1
|
```
|
2
|
-
pip install -U git+https://github.com/pypa/pip
|
2
|
+
python -m pip install -U git+https://github.com/pypa/pip
|
3
3
|
```
|
4
4
|
|
5
|
+
or
|
6
|
+
|
7
|
+
```
|
8
|
+
python -m pip install -U https://github.com/pypa/pip/archive/master.zip
|
9
|
+
```
|
10
|
+
|
5
11
|
でpipのバージョンをアップグレードすると良いとのことです。
|
6
12
|
https://github.com/pypa/pip/issues/4110
|