• Home
  • Raw
  • Download

Lines Matching refs:pip

35 * ``pip`` is the preferred installer program. Starting with Python 3.4, it
42 defaults to installing ``pip`` into all created virtual environments.
46 aren't able to automatically install ``pip`` into created environments.
88 python -m pip install SomePackage
104 python -m pip install SomePackage==1.0.4 # specific version
105 python -m pip install "SomePackage>=1.0.4" # minimum version
111 python -m pip install --upgrade SomePackage
113 More information and resources regarding ``pip`` and its capabilities can be
131 ... install ``pip`` in versions of Python prior to Python 3.4?
134 Python only started bundling ``pip`` with Python 3.4. For earlier versions,
135 ``pip`` needs to be "bootstrapped" as described in the Python Packaging
149 Passing the ``--user`` option to ``python -m pip install`` will install a
157 aren't currently easy to install using ``pip`` directly. At this point in
160 rather than attempting to install them with ``pip``.
173 ``pip``::
175 python2 -m pip install SomePackage # default Python 2
176 python2.7 -m pip install SomePackage # specifically Python 2.7
177 python3 -m pip install SomePackage # default Python 3
178 python3.4 -m pip install SomePackage # specifically Python 3.4
180 Appropriately versioned ``pip`` commands may also be available.
185 py -2 -m pip install SomePackage # default Python 2
186 py -2.7 -m pip install SomePackage # specifically Python 2.7
187 py -3 -m pip install SomePackage # default Python 3
188 py -3.4 -m pip install SomePackage # specifically Python 3.4
208 is unexpectedly upgraded using ``pip``.
211 per-user installation when installing packages with ``pip``.
217 It is possible that ``pip`` does not get installed by default. One potential fix is::
219 python -m ensurepip --default-pip
221 There are also additional resources for `installing pip.
222 <https://packaging.python.org/tutorials/installing-packages/#install-pip-setuptools-and-wheel>`__