python: upgrade all python modules on windows 11 By Ricardo MallaFebruary 18, 2024uncategorized python -m pip list --outdated --format=columns | Select-String -Pattern '^\S+' -AllMatches | ForEach-Object {python -m pip install --upgrade ($_.Matches.Groups[0].Value)}