Lines Matching full:pip
35 * ``pip`` is the preferred installer program. Starting with Python 2.7.9, it
41 is defaults to installing ``pip`` into all created virtual environments.
69 python -m pip install SomePackage
75 ``virtualenv`` to provide such environments using either pip
76 (``pip install virtualenv``) or through your system package manager
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
97 More information and resources regarding ``pip`` and its capabilities can be
111 ... install ``pip`` in versions of Python prior to Python 2.7.9?
114 Python only started bundling ``pip`` with Python 2.7.9. For earlier versions,
115 ``pip`` needs to be "bootstrapped" as described in the Python Packaging
129 Passing the ``--user`` option to ``python -m pip install`` will install a
137 aren't currently easy to install using ``pip`` directly. At this point in
141 rather than attempting to install them with ``pip``.
154 ``pip``::
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
161 (appropriately versioned ``pip`` commands may also be available)
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
189 is unexpectedly upgraded using ``pip``.
192 per-user installation when installing packages with ``pip``.
195 Pip not installed
198 It is possible that ``pip`` does not get installed by default. One potential fix is::
200 python -m ensurepip --default-pip
202 There are also additional resources for `installing pip.
203 <https://packaging.python.org/tutorials/installing-packages/#install-pip-setuptools-and-wheel>`__