python packeg manager code example
Example 1: install packages with pip from python
pip3 install
Example 2: pip upgrade python
pip freeze | %{$_.split('==')[0]} | %{pip install --upgrade $_}
pip3 install
pip freeze | %{$_.split('==')[0]} | %{pip install --upgrade $_}