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


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

pip list -o | awk 'NR>2 {print $1}' | xargs -L 1 pip install -U