Tag: Python
インストール済みのパッケージのうち、最新でないものをアップデートする $ pip list --outdated | awk 'NR>2 {print $1}' | xargs pip install -U
$ pip3 list --outdated | awk 'NR>2 {print $1}' | xargs pip3 install -U
アップデート必要なパッケージのリスト(これは便利) $ pip list -o