python: upgrade all python modules on windows 11

 

 

python -m pip list --outdated --format=columns | Select-String -Pattern '^\S+' -AllMatches | ForEach-Object {python -m pip install --upgrade ($_.Matches.Groups[0].Value)}

Leave a Reply

Your email address will not be published. Required fields are marked *