Windows10でPython3.8.3のインストール後pipとsetuptoolsの更新設定メモ

1.検索欄にcmdを入力し、「コマンド プロンプト」を右クリックします。

2「管理者として実行」を選択します。
3.pipを更新します
C:\Windows\system32>python -m pip install -U pip
Collecting pip
Using cached https://files.pythonhosted.org/packages/43/84/23ed6a1796480a6f1a2d38f2802901d078266bda38388954d01d3f2e821d/pip-20.1.1-py2.py3-none-any.whl
Installing collected packages: pip
Found existing installation: pip 19.2.3
Uninstalling pip-19.2.3:
Successfully uninstalled pip-19.2.3
Successfully installed pip-20.1.1

4.setuptoolsを更新します
C:\Windows\system32>python -m pip install -U setuptools
Collecting setuptools
Downloading setuptools-49.2.0-py3-none-any.whl (789 kB)
|████████████████████████████████| 789 kB 102 kB/s
Installing collected packages: setuptools
Attempting uninstall: setuptools
Found existing installation: setuptools 41.2.0
Uninstalling setuptools-41.2.0:
Successfully uninstalled setuptools-41.2.0
Successfully installed setuptools-49.2.0

5.pip バージョン確認
C:\Windows\system32>pip list
Package Version
———- ——-
pip 20.1.1
setuptools 49.2.0

Windows10

Posted by arkgame