xxxxxxxxxx
py -m pip download [options] <requirement specifier> [package-index-options]
py -m pip download [options] -r <requirements file> [package-index-options]
py -m pip download [options] <vcs project url>
py -m pip download [options] <local project path>
py -m pip download [options] <archive url/path>
xxxxxxxxxx
## To install Pip, first download get-pip.py from:
https://bootstrap.pypa.io/get-pip.py
## Then run the following command in the command line
## in the folder where the file has been saved.
python get-pip.py
xxxxxxxxxx
#Python comes with an ensurepip module, which can install pip in a Python environment.
python -m ensurepip --upgrade
xxxxxxxxxx
download pip
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py
#install pip
sudo python2.7 get-pip.py
xxxxxxxxxx
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py; python3 get-pip.py
xxxxxxxxxx
Download the script, from https://bootstrap.pypa.io/get-pip.py.
Open a terminal/command prompt, cd to the folder containing the get-pip.py file and run:
$ python get-pip.py