mirror of
https://github.com/Melon-Bread/gnu-slash-dot-files
synced 2024-11-25 00:38:23 -05:00
5 lines
176 B
Bash
5 lines
176 B
Bash
#!/usr/bin/env bash
|
|
|
|
echo 'Updating all user installed pip packages...'
|
|
pip list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install --user -U
|