Lines Matching +full:wheel +full:- +full:windows
3 .. _installing-index:
9 :Email: distutils-sig@python.org
22 :ref:`distribution guide <distributing-index>`.
37 * a virtual environment is a semi-isolated Python environment that allows
69 python -m pip install SomePackage
77 (commonly called ``virtualenv`` or ``python-virtualenv``).
79 For Windows users, the examples in this guide assume that the option to
88 python -m pip install SomePackage==1.0.4 # specific version
89 python -m pip install "SomePackage>=1.0.4" # minimum version
95 python -m pip install --upgrade SomePackage
112 ----------------------------------------------------------------
121 <https://packaging.python.org/en/latest/installing/#requirements-for-installing-packages>`__
124 .. installing-per-user-installation:
127 -----------------------------------------------
129 Passing the ``--user`` option to ``python -m pip install`` will install a
134 ---------------------------------------
150 ----------------------------------------------------------------
153 in combination with the ``-m`` switch to run the appropriate copy of
156 python2 -m pip install SomePackage # default Python 2
157 python2.7 -m pip install SomePackage # specifically Python 2.7
158 python3 -m pip install SomePackage # default Python 3
159 python3.4 -m pip install SomePackage # specifically Python 3.4
163 On Windows, use the ``py`` Python launcher in combination with the ``-m``
166 py -2 -m pip install SomePackage # default Python 2
167 py -2.7 -m pip install SomePackage # specifically Python 2.7
168 py -3 -m pip install SomePackage # default Python 3
169 py -3.4 -m pip install SomePackage # specifically Python 3.4
183 ------------------------------------------
192 per-user installation when installing packages with ``pip``.
196 -----------------
200 python -m ensurepip --default-pip
203 <https://packaging.python.org/tutorials/installing-packages/#install-pip-setuptools-and-wheel>`__
207 ----------------------------
213 With the introduction of support for the binary ``wheel`` format, and the
214 ability to publish wheels for at least Windows and Mac OS X through the
216 as users are more regularly able to install pre-built extensions rather
221 that is not yet available as pre-built ``wheel`` files may also help with