Friday, August 20, 2021

Test and Code: 163: pip install ./local_directory - Stéphane Bidoul

pip : "pip installs packages" or maybe "Package Installer for Python"
pip is an invaluable tool when developing with Python.
A lot of people know pip as a way to install third party packages from pypi.org
You can also use pip to install from other indexes (or is it indices?)

You can also use pip to install a package in a local directory.
That's the part I want to jump in and explore with Stéphane Bidoul.
The way pip installs from a local directory is about to change, and the story is fascinating.

Special Guest: Stéphane Bidoul.

Sponsored By:

Support Test & Code

Links:

<p>pip : &quot;pip installs packages&quot; or maybe &quot;Package Installer for Python&quot;<br> pip is an invaluable tool when developing with Python.<br> A lot of people know pip as a way to install third party packages from pypi.org<br> You can also use pip to install from other indexes (or is it indices?)</p> <p>You can also use pip to install a package in a local directory.<br> That&#39;s the part I want to jump in and explore with Stéphane Bidoul.<br> The way pip installs from a local directory is about to change, and the story is fascinating.</p><p>Special Guest: Stéphane Bidoul.</p><p>Sponsored By:</p><ul><li><a href="https://ift.tt/2JDHRTz" rel="nofollow">PyCharm Professional</a>: <a href="https://ift.tt/2JDHRTz" rel="nofollow">Try PyCharm Pro for 4 months and learn how PyCharm will save you time.</a> Promo Code: TESTANDCODE21</li></ul><p><a href="https://ift.tt/2tzXV5e" rel="payment">Support Test & Code</a></p><p>Links:</p><ul><li><a href="https://ift.tt/3sxy3Tc" title="The Odoo Community Association" rel="nofollow">The Odoo Community Association</a></li><li><a href="https://ift.tt/3gDpqSr" title="PEP 610 -- Recording the Direct URL Origin of installed distributions | Python.org" rel="nofollow">PEP 610 -- Recording the Direct URL Origin of installed distributions | Python.org</a></li><li><a href="https://ift.tt/3vHXcLO" title="PEP 660 -- Editable installs for pyproject.toml based builds (wheel based) | Python.org" rel="nofollow">PEP 660 -- Editable installs for pyproject.toml based builds (wheel based) | Python.org</a> &mdash; Bidoul</li><li><a href="https://ift.tt/3mjnj9P" title="pip install --no-index --find-links <url or directory>" rel="nofollow">pip install --no-index --find-links <url or directory></a></li><li><a href="https://ift.tt/3j09xXE" title="Solving issues related to out-of-tree builds · Issue #7555 · pypa/pip" rel="nofollow">Solving issues related to out-of-tree builds · Issue #7555 · pypa/pip</a></li><li><a href="https://ift.tt/3syB7yl" title="pip list json format" rel="nofollow">pip list json format</a></li></ul>

from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...