Answers for "update all package python"

2

pip upgrade all packages

pip list --outdated --format=freeze | %{$_.split('==')[0]} | %{pip install --upgrade $_}
Posted by: Guest on September-15-2021
-2

update all modules python

pip install [package] --upgrade
Posted by: Guest on March-11-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language