how to properly install pip and python code example
Example 1: installing pip
python -m pip install --upgrade pip
Example 2: how to install pip
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py
Example 3: python pip install
https://bootstrap.pypa.io/get-pip.py
python get-pip.py
Example 4: install python package
pip3/pip2 install <package>
Example 5: pip install python
"""to install a python module just use pip command"""
"""open cmd as administrator and write this command"""
pip install <package-name>
"""for ex. pip install pandas"""