1
0
mirror of https://github.com/Melon-Bread/gnu-slash-dot-files synced 2025-02-19 11:43:04 -05:00

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