Add pip plugin to support upgrade/uninstall all packages.

pull/1718/head
Nariyasu Heseri 2020-12-04 13:42:14 +09:00
parent 929321ad0a
commit c87fc4940f
1 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,23 @@
pip-upgrade-all() {
local outdated_packages="$(pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1)"
if [ -z $outdated_packages ]
then
echo "pip: everything is up to date."
else
for package in $outdated_packages; do
pip install --user -U $package
done
fi
}
pip-uninstall-all() {
local installed_packages=pip list --user --format=freeze | grep -v '^\-e' | cut -d = -f 1
if [ -z $installed_packages ]
then
echo "pip: nothing has been installed."
else
for package in $installed_packages; do
pip uninstall -y $package
done
fi
}