Answers for "update all python packages indows"

2

pip upgrade all packages

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

Update All Python Packages On Windows

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language