informatique:pip
Pip
Mettre à jour tous les logiciels installés avec pip en une commande
pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U
J'ai fait un alias dans ~/.bash_aliases
:
alias pip-up="pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U"
(Ne pas oublier de relancer source ~/.bashrc
).
Source: https://stackoverflow.com/questions/2720014/upgrading-all-packages-with-pip
informatique/pip.txt · Dernière modification : 2020/08/09 13:03 de 127.0.0.1