Answers for "Update All Python Packages On Linux"

1

Update All Python Packages On Linux

pip3 list --outdated --format=freeze | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip3 install -U
Posted by: Guest on October-21-2021
0

Update All Python Packages On Windows

pip freeze | %{$_.split('==')[0]} | %{pip install --upgrade $_}
Posted by: Guest on October-06-2020

Browse Popular Code Answers by Language