0
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Pythonのアップデートがあったときにすること

Posted at

はじめに

2024年10月になり、Pythonのアップデートがありました。

Python Release Python 3.13.0 | Python.org

Pythonをアップデートするときにすることを覚書しておきます。

アップデート前に

まずは現行のPythonで使っているパッケージを控えておきます。なぜかというと、Pythonのアップデートをすると、パッケージを再インストールする必要があるからです。

まず、以下のコマンドで、現在インストールされているパッケージを最新のものにアップデートします。こうしないと、アップデート後にパッケージがインストールされないことがあります。ちなみに、pip-reviewがない場合は、pip install pip-reviewでインストールできます。

pip-review --auto

これによって、現在インストールされている全てのパッケージが最新のものにアップデートされます。その後、以下のコマンドで、現在インストールされているパッケージをrequirements.txtに書き出しておきます。

pip freeze > requirements.txt

次は、Pythonのアップデートを行います。

Pythonのアップデート

まず、上記のリンクなどから最新のPythonインストーラをダウンロードします。

インストーラを起動し、Pythonの最新版をインストールします。「Add Python to PATH」にチェックを入れることを忘れないようにします。

インストールが完了したら、コマンドプロンプトを開いて、以下のコマンドを実行します。

python --version

これでバージョンが最新のものになっていたら、Pythonのアップデートは完了です。

pipのアップデート

まず、以下のコマンドを実行して、pipを最新のものにアップデートします。

python -m pip install --upgrade pip

次に、以下のコマンドを実行して、pipのバージョンを確認します。

pip --version

これでバージョンが最新のものになっていたら、pipのアップデートは完了です。

パッケージの再インストール

最後に、requirements.txtを使って、パッケージを再インストールします。

pip install -r requirements.txt

以下のコマンドで、パッケージがインストールされていることを確認します。

pip list

これで、Pythonのアップデートが完了しました。

参考文献

Pythonのアップデート方法 | デジタルトレンドナビ

pipでいれたパッケージを一括アップデート - DISTRICT 37

0
4
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
0
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?