diff --git a/docs/index.txt b/docs/index.txt index 683b03de1b3..55ff74a81c3 100644 --- a/docs/index.txt +++ b/docs/index.txt @@ -7,6 +7,7 @@ pip installs Python packages. :maxdepth: 1 news + installing requirement-format configuration how-to-contribute diff --git a/docs/installing.txt b/docs/installing.txt new file mode 100644 index 00000000000..e95ec36396b --- /dev/null +++ b/docs/installing.txt @@ -0,0 +1,28 @@ +Installing pip +============== + +Using easy_install +------------------ +This may have to be run as root. :: + + $ easy_install -U pip + +Using source +------------ +You can find the source on PyPi: http://pypi.python.org/pypi/pip:: + + $ tar xvfz pip-*.*.*.tar.gz + $ cd pip-*.*.* + $ python setup.py install # may need to be root + +Installing development version +------------------------------ + +First you will need to clone the git repo:: + + $ git clone https://github.com/pypa/pip.git + +Now we can install from the repo:: + + $ cd pip + $ python setup.py install # may need to be root