[PYTHON] How to install pip
How to install pip
Advance preparation
- python is installed
Windows environment procedure
- Download destination: https://bootstrap.pypa.io/get-pip.py
Save get-pip.py in any directory
- Execute the following command in the saved directory
python get-pip.py
Linux (CentOS) environment procedure
- Install pip
curl -kL https://bootstrap.pypa.io/get-pip.py | python
Confirmation of installation (confirmation of pip version)
- Execute the following command
pip -V
As a result, the installation is complete when the following pip version is displayed.
Display example: `` pip 8.1.2 from /usr/local/lib/python2.7/site-packages (python2.7)
`