Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>The <a href="https://packaging.python.org/guides/installing-using-pip-and-virtualenv/" rel="noreferrer">current recommendation</a> is to use <code>python -m pip</code>, where <code>python</code> is the version of you would like to use. This is the recommendation because it works across all versions of Python, and in all forms of virtualenv. For example:</p> <pre><code># The system default python: $ python -m pip install fish # A virtualenv's python: $ .env/bin/python -m pip install fish # A specific version of python: $ python-3.6 -m pip install fish </code></pre> <p>Previous answer, left for posterity:</p> <p>Since version 0.8, Pip supports <code>pip-{version}</code>. You can use it the same as <code>easy_install-{version}</code>:</p> <pre><code>$ pip-2.5 install myfoopackage $ pip-2.6 install otherpackage $ pip-2.7 install mybarpackage </code></pre> <hr> <p><strong>EDIT</strong>: pip changed its schema to use <code>pipVERSION</code> instead of <code>pip-VERSION</code> in version 1.5. You should use the following if you have <code>pip &gt;= 1.5</code>:</p> <pre><code>$ pip2.6 install otherpackage $ pip2.7 install mybarpackage </code></pre> <p>Check <a href="https://github.com/pypa/pip/pull/1053" rel="noreferrer">https://github.com/pypa/pip/pull/1053</a> for more details</p> <hr> <p>References:</p> <ul> <li><a href="https://github.com/pypa/pip/issues/200" rel="noreferrer">https://github.com/pypa/pip/issues/200</a></li> <li><a href="http://www.pip-installer.org/docs/pip/en/0.8.3/news.html#id4" rel="noreferrer">http://www.pip-installer.org/docs/pip/en/0.8.3/news.html#id4</a></li> </ul>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload