@@ -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. Yet, it's not
@@ -65,25 +65,26 @@ new Python scripts directory to your ``PATH``
6565 export PATH=/usr/local/share/python:$PATH
6666
6767
68- Distribute & Pip
68+ Setuptools & Pip
6969----------------
7070
71- The most crucial third-party Python software of all is Distribute , which
71+ The most crucial third-party Python software of all is Setuptools , which
7272extends the packaging and installation facilities provided by the distutils
73- in the standard library. Once you add Distribute to your Python system you can
73+ in the standard library. Once you add Setuptools to your Python system you can
7474download and install any compliant Python software product with a single
7575command. It also enables you to add this network installation capability to
7676your own Python software with very little work. Homebrew already installed
77- Distribute for you.
77+ Setuptools for you.
7878
7979Happily, when you ran `brew install python `, Homebrew also installed **pip **.
80- Pip allows for uninstallation of packages, and is actively maintained.
80+ Pip allows for installation and uninstallation of packages, and is actively
81+ maintained.
8182
8283
8384Virtualenv
8485----------
8586
86- After Distribute & Pip, the next development tool that you should install is
87+ After Setuptools & Pip, the next development tool that you should install is
8788`virtualenv <http://pypi.python.org/pypi/virtualenv/ >`_. Use pip
8889
8990.. code-block :: console
@@ -103,7 +104,7 @@ the new environment.
103104
104105.. code-block :: console
105106
106- $ virtualenv --distribute venv
107+ $ virtualenv venv
107108
108109 To use an environment, run ``source venv/bin/activate ``. Your command prompt
109110will change to show the active environment. Once you have finished working in
0 commit comments