how to install pip module in python linux code example
Example 1: pip install python 3
python -m pip install <package>
#Download Selenium
python -m pip install selenium
Example 2: pip upgrade python
pip freeze | %{$_.split('==')[0]} | %{pip install --upgrade $_}