Skip to content

Commit 6bba87a

Browse files
committed
New installs of Python through Homebrew come with pip :)
1 parent d4abefc commit 6bba87a

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

docs/starting/install/osx.rst

Lines changed: 7 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -77,18 +77,11 @@ extends the packaging and installation facilities provided by the distutils
7777
in the standard library. Once you add Distribute to your Python system you can
7878
download and install any compliant Python software product with a single
7979
command. It also enables you to add this network installation capability to
80-
your own Python software with very little work.
80+
your own Python software with very little work. Homebrew already installed
81+
Distribute for you.
8182

82-
Homebrew already installed Distribute for you. Its ``easy_install`` command is
83-
considered by many to be deprecated, so we will install its replacement:
84-
**pip**. Pip allows for uninstallation of packages, and is actively maintained,
85-
unlike easy_install.
86-
87-
To install pip, simply open a command prompt and run
88-
89-
.. code-block:: console
90-
91-
$ easy_install pip
83+
Happily, when you ran `brew install python`, Homebrew also installed **pip**.
84+
Pip allows for uninstallation of packages, and is actively maintained.
9285

9386

9487
Virtualenv
@@ -127,6 +120,9 @@ environment. Put your own code within a subdirectory of the environment,
127120
however you wish. When you no longer need a particular environment, simply
128121
copy your code out of it, and then delete the main directory for the environment.
129122

123+
An useful set of extensions to virtualenv is available in virtualenvwrapper,
124+
`RTFD <http://virtualenvwrapper.readthedocs.org/en/latest/>`_ to find out more.
125+
130126

131127
--------------------------------
132128

0 commit comments

Comments
 (0)