pythonのモジュールをチェックしてアップデートする方法です。
#!/bin/bash
pip install --upgrade pip
pip list --outdated | awk 'NR>2 {print $1}' | xargs -n1 pip install -U
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 1 year has passed since last update.
pythonのモジュールをチェックしてアップデートする方法です。
#!/bin/bash
pip install --upgrade pip
pip list --outdated | awk 'NR>2 {print $1}' | xargs -n1 pip install -U
Register as a new user and use Qiita more conveniently
Go to list of users who liked