@@ -8,7 +8,7 @@ The latest version of Mac OS X, Mavericks, **comes with Python 2.7 out of the bo
8
8
You do not need to install or configure anything else to use Python. Having
9
9
said that, I would strongly recommend that you install the tools and libraries
10
10
described 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
12
12
makes it much easier for you to use other third-party Python libraries.
13
13
14
14
The 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``
65
65
export PATH=/usr/local/share/python:$PATH
66
66
67
67
68
- Distribute & Pip
68
+ Setuptools & Pip
69
69
----------------
70
70
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
72
72
extends 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
74
74
download and install any compliant Python software product with a single
75
75
command. It also enables you to add this network installation capability to
76
76
your own Python software with very little work. Homebrew already installed
77
- Distribute for you.
77
+ Setuptools for you.
78
78
79
79
Happily, 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.
81
82
82
83
83
84
Virtualenv
84
85
----------
85
86
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
87
88
`virtualenv <http://pypi.python.org/pypi/virtualenv/ >`_. Use pip
88
89
89
90
.. code-block :: console
@@ -103,7 +104,7 @@ the new environment.
103
104
104
105
.. code-block :: console
105
106
106
- $ virtualenv --distribute venv
107
+ $ virtualenv venv
107
108
108
109
To use an environment, run ``source venv/bin/activate ``. Your command prompt
109
110
will change to show the active environment. Once you have finished working in
0 commit comments