#!/usr/bin/env fish
#
function pip-upgrade -d "Upgrade python user-installed packaged"
pip freeze --user | cut -d'=' -f1 | xargs -n1 pip install -U --user
end