Région de recherche :

Date :

https://docs.python.org › 3 › installing

Installing Python Modules — Python 3.12.6 documentation

Learn how to use pip, venv, and other tools to install and manage Python packages from the Python Package Index or other sources. Find answers to common questions and issues related to installing Python modules.

https://packaging.python.org › tutorials › installing-packages

Installing Packages - Python Packaging User Guide

This section covers the basics of how to install Python packages. It’s important to note that the term “package” in this context is being used to describe a bundle of software to be installed (i.e. as a synonym for a distribution).

https://python.land › virtual-environments › installing-packages-with-pip

Pip Install: How To Install and Remove Python Packages

Learn how to use pip, the Python package manager, to install and remove Python packages in different environments. Find out how to use pip with requirements.txt, custom repositories, editable mode, and more.

Pip Install: How To Install and Remove Python Packages

https://note.nkmk.me › en › python-pip-usage

How to use pip (Install, update, uninstall packages)

Learn how to install, update, and uninstall Python packages using pip, the Python package installer. Find out how to use pip with local, GitHub, or PyPI sources, and how to check package details and dependencies.

https://pypi.org

PyPI · The Python Package Index

The Python Package Index (PyPI) is a repository of software for the Python programming language. PyPI helps you find and install software developed and shared by the Python community. Learn about installing packages. Package authors use PyPI to distribute their software. Learn how to package your Python code for PyPI.

https://pypi.org › project › pip

pip · PyPI

Project description. pip is the package installer for Python. You can use pip to install packages from the Python Package Index and other indexes. Please take a look at our documentation for how to install and use pip: Installation. Usage. We release updates regularly, with a new version every 3 months. Find more details in our documentation:

https://www.python.org › downloads

Download Python | Python.org

Download the latest version of Python. Download Python 3.12.6. Looking for Python with a different OS? Python for Windows, Linux/UNIX, macOS, Other. Want to help test development versions of Python 3.13? Prereleases, Docker images. Active Python Releases. For more information visit the Python Developer's Guide.

https://packaging.python.org › guides › installing-using-pip-and-virtual-environments

Install packages in a virtual environment using pip and venv

Learn how to create and activate a virtual environment using venv and install packages with pip. See examples of installing packages from PyPI, source, version control, and specific versions.

https://pip.pypa.io › en › stable › cli › pip_install.html

pip install - pip documentation v24.2

Install packages from: PyPI (and other indexes) using requirement specifiers. VCS project urls. Local project directories. Local or remote source archives. pip also supports installing from “requirements files”, which provide an easy way to specify a whole environment to be installed. Overview¶ pip install has several stages:

https://www.linode.com › docs › guides › installing-and-importing-modules-in-python-3

Install and Import Modules in Python 3 - Linode

Install Modules in Python 3. The pip package manager is the best way to install Python 3 modules. However, modules that do not support pip can still be installed locally as long as they provide a setup.py file. Python includes a large number of useful standard modules, which are known as the Library Reference. These modules do not ...