1
1

More than 1 year has passed since last update.

`python get-pip.py`実行時にエラー(This script does not work on Python 3.6 The minimum supported Python version is 3.7.Please use https://bootstrap.pypa.io/pip/3.6/get-pip.py instead.)

Posted at

python get-pip.py実行時にエラー

$ curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
$ python get-pip.py
ERROR: This script does not work on Python 3.6 The minimum supported Python version is 3.7. Please use https://bootstrap.pypa.io/pip/3.6/get-pip.py instead.

エラーログのうち、以下に素直に従うことで解決

Please use https://bootstrap.pypa.io/pip/3.6/get-pip.py instead.

$ curl https://bootstrap.pypa.io/pip/3.6/get-pip.py -o get-pip.py
$ python get-pip.py
# OK

参考

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1