Région de recherche :

Date :

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

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: Release notes; Release ...

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

Pip Install: How To Install and Remove Python Packages

Use Python pip to install packages manually, or by using a requirements.txt file. We'll also look at how to install and upgrade pip itself.

Pip Install: How To Install and Remove Python Packages

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

pip install - pip documentation v24.2

pip install has several stages: Identify the base requirements. The user supplied arguments are processed here. Resolve dependencies. What will be installed is determined here. Build wheels. All the dependencies that can be are built into wheels. Install the packages (and uninstall anything being upgraded/replaced).

https://pip.pypa.io › en › stable › installation

Installation - pip documentation v24.2

Installation ¶. Usually, pip is automatically installed if you are: working in a virtual environment. using Python downloaded from python.org. using Python that has not been modified by a redistributor to remove ensurepip. Supported Methods ¶.

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

Installing Python Modules — Python 3.12.6 documentation

The following command will install the latest version of a module and its dependencies from the Python Package Index: python -m pip install SomePackage. Note. For POSIX users (including macOS and Linux users), the examples in this guide assume the use of a virtual environment.

https://stackoverflow.com › questions › 4750806

python - How do I install pip on Windows? - Stack Overflow

If you've got Python 3.4+ or 2.7.9+, it will be installed by default on Windows. Otherwise, in short: Download the pip installer: https://bootstrap.pypa.io/get-pip.py. If paranoid, inspect file to confirm it isn't malicious (must b64 decode).

python - How do I install pip on Windows? - Stack Overflow

https://pip.pypa.io › en › stable › user_guide

User Guide - pip documentation v24.2

Windows. Installing Packages ¶. pip supports installing from PyPI, version control, local projects, and directly from distribution files. The most common scenario is to install from PyPI using Requirement Specifiers. Unix/macOS. python -m pip install SomePackage # latest version . python -m pip install SomePackage==1.0.4 # specific version .

https://opensource.com › article › 20 › 3 › pip-linux-mac-windows

How to install pip to manage PyPI packages easily

Installing Python pip on your system allows you to manage PyPI packages easily. Many of these packages can be installed just by typing python -m pip install <package-name> into a terminal or command-line. Newer versions of Python 3 (3.4 and higher) and Python 2 (2.7.9 and higher) come preloaded with pip.

How to install pip to manage PyPI packages easily

https://apprendrepython.com › comment-utiliser-pip-installer-mettre-a-jour-desinstaller...

Comment utiliser pip (Installer, mettre à jour, désinstaller des ...

Installer depuis local ou GitHub. Mettre à jour un package : pip install --upgrade. Désinstallez un package : pip uninstall. Vérifiez les dépendances : pip check. Installer le pip. Si vous installez Python avec le programme d’installation standard de python.org, pip est installé en même temps.