-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |