Excellent Tip to update all Python packages together
https://www.activestate.com/resources/quick-reads/how-to-update-all-python-packages/
step 1 : pip list --outdated
Step 2 : Open PowerShell
pip freeze | %{$_.split('==')[0]} | %{pip install --upgrade $_}
Comments