6 lines
164 B
Fish
Executable file
6 lines
164 B
Fish
Executable file
#!/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
|