#author("2022-01-01T04:31:33+00:00","default:hotate","hotate")
#author("2025-01-12T04:50:06+00:00","default:hotate","hotate")
#contents
&tag(Python);

* 情報 [#eec80b8e]
- [[Pythonのパッケージ(ライブラリ)のバージョンを確認 | note.nkmk.me>https://note.nkmk.me/python-package-version/]]
- [[[解決!Python]pipコマンドでパッケージをインストール/アンインストールするには:解決!Python - @IT>https://atmarkit.itmedia.co.jp/ait/articles/2212/13/news013.html]] (2024/5/7)
 Pythonの標準的なパッケージインストーラーであるpipコマンドを使ってパッケージをインストールしたりアンインストールしたり、インストールされているパッケージを調べたりする方法を紹介する。

** 更新 [#a65ac36f]
- [[よく使うpipコマンド - Qiita>https://qiita.com/Masaaki_Inaba/items/fe4a246a7e6fcd9c4726]]
 インストール済みのパッケージのうち、最新でないものをアップデートする
 $ pip list --outdated | awk 'NR>2 {print $1}' | xargs pip install -U
-- コメント:[[Homebrew]]でインストールした[[Python3]]の場合は下記になる。(2021/01/10)
 $ pip3 list --outdated | awk 'NR>2 {print $1}' | xargs pip3 install -U
- [[pipでアップデートするときのコマンド - Qiita>https://qiita.com/HyunwookPark/items/242a8ceea656416b6da8]]
 アップデート必要なパッケージのリスト(これは便利)
 $ pip list -o

* 関連 [#zbf0b4eb]
#related

#taglist(tag=Python)

トップ   編集 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS