Lines Matching +full:development +full:- +full:tools
3 .. _installing-index:
9 :Email: distutils-sig@python.org
11 As a popular open source development project, Python has an active
22 :ref:`distribution guide <distributing-index>`.
29 use of the distribution and installation tools provided with Python.
37 * A *virtual environment* is a semi-isolated Python environment that allows
53 evolution of the standard packaging tools and the associated metadata and
54 file format standards. They maintain a variety of tools, documentation,
63 development).
71 <https://packaging.python.org/installing/#creating-virtual-environments>`__
77 The standard packaging tools are all designed to be used from the command
83 python -m pip install SomePackage
99 python -m pip install SomePackage==1.0.4 # specific version
100 python -m pip install "SomePackage>=1.0.4" # minimum version
106 python -m pip install --upgrade SomePackage
127 --------------------------------------------------------------
136 <https://packaging.python.org/installing/#requirements-for-installing-packages>`__
139 .. installing-per-user-installation:
142 -----------------------------------------------
144 Passing the ``--user`` option to ``python -m pip install`` will install a
149 ---------------------------------------
164 ----------------------------------------------------------------
167 in combination with the ``-m`` switch to run the appropriate copy of
170 python2 -m pip install SomePackage # default Python 2
171 python2.7 -m pip install SomePackage # specifically Python 2.7
172 python3 -m pip install SomePackage # default Python 3
173 python3.4 -m pip install SomePackage # specifically Python 3.4
177 On Windows, use the ``py`` Python launcher in combination with the ``-m``
180 py -2 -m pip install SomePackage # default Python 2
181 py -2.7 -m pip install SomePackage # specifically Python 2.7
182 py -3 -m pip install SomePackage # default Python 3
183 py -3.4 -m pip install SomePackage # specifically Python 3.4
187 Once the Development & Deployment part of PPUG is fleshed out, some of
197 ------------------------------------------
206 per-user installation when installing packages with ``pip``.
210 -----------------
214 python -m ensurepip --default-pip
217 …ackaging.python.org/en/latest/tutorials/installing-packages/#ensure-pip-setuptools-and-wheel-are-u…
221 ----------------------------
230 as users are more regularly able to install pre-built extensions rather
235 that are not yet available as pre-built ``wheel`` files may also help with