1curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py
2#Once you do that, enter line 3 inside
3python get-pip.py
1## To install Pip, first download get-pip.py from:
2https://bootstrap.pypa.io/get-pip.py
3
4## Then run the following command in the command line
5## in the folder where the file has been saved.
6python get-pip.py
1python -m pip download [options] <requirement specifier> [package-index-options] ...
2python -m pip download [options] -r <requirements file> [package-index-options] ...
3python -m pip download [options] <vcs project url> ...
4python -m pip download [options] <local project path> ...
5python -m pip download [options] <archive url/path> ...
6
7
1
2Pip is a replacement for easy_install.
3
4Packages installs the packages default under site-packages.
5