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.
70 python -m pip install SomePackage
76 ``virtualenv`` to provide such environments using either pip
77 (``pip install virtualenv``) or through your system package manager
89 python -m pip install SomePackage==1.0.4 # specific version
90 python -m pip install "SomePackage>=1.0.4" # minimum version
96 python -m pip install --upgrade SomePackage
98 More information and resources regarding ``pip`` and its capabilities can be
112 ... install ``pip`` in versions of Python prior to Python 2.7.9?
115 Python only started bundling ``pip`` with Python 2.7.9. For earlier versions,
116 ``pip`` needs to be "bootstrapped" as described in the Python Packaging
130 Passing the ``--user`` option to ``python -m pip install`` will install a
138 aren't currently easy to install using ``pip`` directly. At this point in
142 rather than attempting to install them with ``pip``.
155 ``pip``::
157 python2 -m pip install SomePackage # default Python 2
158 python2.7 -m pip install SomePackage # specifically Python 2.7
159 python3 -m pip install SomePackage # default Python 3
160 python3.4 -m pip install SomePackage # specifically Python 3.4
162 (appropriately versioned ``pip`` commands may also be available)
167 py -2 -m pip install SomePackage # default Python 2
168 py -2.7 -m pip install SomePackage # specifically Python 2.7
169 py -3 -m pip install SomePackage # default Python 3
170 py -3.4 -m pip install SomePackage # specifically Python 3.4
190 is unexpectedly upgraded using ``pip``.
193 per-user installation when installing packages with ``pip``.