Update All Installed Packages in PIP
To update all installed packages in pip just run the following command on the terminal:
pip install -U $(pip freeze | awk '{split($0, a, "=="); print a\[1\]}')
Tue Mar 21 2017
To update all installed packages in pip just run the following command on the terminal:
pip install -U $(pip freeze | awk '{split($0, a, "=="); print a\[1\]}')