Tuesday, August 29, 2017

Upgrade PIP in windows using Powershell

Open powershell and paste this
pip list --outdated --format=freeze | %{$_.split('==')[0]} | %{pip install --upgrade $_}