Skip to content

Commit

Permalink
added some basic installation docs
Browse files Browse the repository at this point in the history
  • Loading branch information
vbabiy committed Mar 15, 2011
1 parent cb0d835 commit 6c82a1b
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/index.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ pip installs Python packages.
:maxdepth: 1

news
installing
requirement-format
configuration
how-to-contribute
Expand Down
28 changes: 28 additions & 0 deletions docs/installing.txt
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 6c82a1b

Please sign in to comment.