os python library pip install command code example
Example 1: how to install python libraries
python -m pip install SomePackage
Example 2: pip upgrade python
pip freeze | %{$_.split('==')[0]} | %{pip install --upgrade $_}
python -m pip install SomePackage
pip freeze | %{$_.split('==')[0]} | %{pip install --upgrade $_}