LoginSignup
6
2

More than 3 years have passed since last update.

pipのパッケージを一括アップグレードする方法

Last updated at Posted at 2018-07-24

自分用メモ。更新可能なパッケージを一括アップグレードする。
(pip20まで動作確認済み)

pip list -o | awk 'NR>2 {print $1}' | xargs -L 1 pip install -U
6
2
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
6
2