@@ -50,8 +50,6 @@ Install pip, setuptools, and wheel
50
50
51
51
python -m pip install -U pip setuptools
52
52
53
- You will not have :ref: `wheel `, so you'll need to run: ``pip install wheel ``
54
-
55
53
* If you're using a Python install on Linux that's managed by the system package
56
54
manager (e.g "yum", "apt-get" etc...), and you want to use the system package
57
55
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
123
121
environments.
124
122
125
123
Currently, 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).
131
132
132
133
The basic usage is like so:
133
134
0 commit comments