@@ -50,8 +50,6 @@ Install pip, setuptools, and wheel
5050
5151 python -m pip install -U pip setuptools
5252
53- You will not have :ref: `wheel `, so you'll need to run: ``pip install wheel ``
54-
5553* If you're using a Python install on Linux that's managed by the system package
5654 manager (e.g "yum", "apt-get" etc...), and you want to use the system package
5755 manager to install or upgrade pip, then see :ref: `Installing
@@ -123,11 +121,14 @@ installation directories and they don’t share libraries with other virtual
123121environments.
124122
125123Currently, there are two viable tools for creating Python virtual environments:
126- :ref: `virtualenv ` and `pyvenv `_. `pyvenv `_ is only available in Python 3.3 &
127- 3.4, and only in Python 3.4, is :ref: `pip ` & :ref: `setuptools ` installed into
128- environments by default, whereas :ref: `virtualenv ` supports Python 2.6 thru
129- Python 3.4 and :ref: `pip ` & :ref: `setuptools ` are installed by default in every
130- version.
124+
125+ * `pyvenv `_ is available by default in Python 3.3 and later, and installs
126+ :ref: `pip ` and :ref: `setuptools ` into created virtual environments in
127+ Python 3.4 and later.
128+ * :ref: `virtualenv ` needs to be installed separately, but supports Python 2.6+
129+ and Python 3.3+, and :ref: `pip `, :ref: `setuptools ` and :ref: `wheel ` are
130+ always installed into created virtual environments by default (regardless of
131+ Python version).
131132
132133The basic usage is like so:
133134
0 commit comments