@@ -8,7 +8,7 @@ The latest version of Mac OS X, Mavericks, **comes with Python 2.7 out of the bo
88You do not need to install or configure anything else to use Python. Having
99said that, I would strongly recommend that you install the tools and libraries
1010described in the next section before you start building Python applications
11- for real-world use. In particular, you should always install Distribute , as it
11+ for real-world use. In particular, you should always install Setuptools , as it
1212makes it much easier for you to use other third-party Python libraries.
1313
1414The version of Python that ships with OS X is great for learning, but it's not
@@ -64,25 +64,26 @@ new Python scripts directory to your ``PATH``
6464 export PATH=/usr/local/share/python:$PATH
6565
6666
67- Distribute & Pip
67+ Setuptools & Pip
6868----------------
6969
70- The most crucial third-party Python software of all is Distribute , which
70+ The most crucial third-party Python software of all is Setuptools , which
7171extends the packaging and installation facilities provided by the distutils
72- in the standard library. Once you add Distribute to your Python system you can
72+ in the standard library. Once you add Setuptools to your Python system you can
7373download and install any compliant Python software product with a single
7474command. It also enables you to add this network installation capability to
7575your own Python software with very little work. Homebrew already installed
76- Distribute for you.
76+ Setuptools for you.
7777
7878Happily, when you ran `brew install python `, Homebrew also installed **pip **.
79- Pip allows for uninstallation of packages, and is actively maintained.
79+ Pip allows for installation and uninstallation of packages, and is actively
80+ maintained.
8081
8182
8283Virtualenv
8384----------
8485
85- After Distribute & Pip, the next development tool that you should install is
86+ After Setuptools & Pip, the next development tool that you should install is
8687`virtualenv <http://pypi.python.org/pypi/virtualenv/ >`_. Use pip
8788
8889.. code-block :: console
@@ -102,7 +103,7 @@ the new environment.
102103
103104.. code-block :: console
104105
105- $ virtualenv --distribute venv
106+ $ virtualenv venv
106107
107108 To use an environment, run ``source venv/bin/activate ``. Your command prompt
108109will change to show the active environment. Once you have finished working in
0 commit comments