Installing Packages - Python Packaging User Guide (2024)

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 todescribe a bundle of software to be installed (i.e. as a synonym for adistribution). It does not refer to the kindof package that you import in your Python source code(i.e. a container of modules). It is common in the Python community to refer toa distribution using the term “package”. Usingthe term “distribution” is often not preferred, because it can easily beconfused with a Linux distribution, or another larger software distributionlike Python itself.

Requirements for Installing Packages#

This section describes the steps to follow before installing other Pythonpackages.

Ensure you can run Python from the command line#

Before you go any further, make sure you have Python and that the expectedversion is available from your command line. You can check this by running:

python3 --version

py --version

You should get some output like Python 3.6.3. If you do not have Python,please install the latest 3.x version from python.org or refer to theInstalling Python section of the Hitchhiker’s Guide to Python.

Note

If you’re a newcomer and you get an error like this:

>>> python3 --versionTraceback (most recent call last): File "<stdin>", line 1, in <module>NameError: name 'python3' is not defined

It’s because this command and other suggested commands in this tutorialare intended to be run in a shell (also called a terminal orconsole). See the Python for Beginners getting started tutorial foran introduction to using your operating system’s shell and interacting withPython.

Note

If you’re using an enhanced shell like IPython or the Jupyternotebook, you can run system commands like those in this tutorial byprefacing them with a ! character:

In [1]: import sys !{sys.executable} --versionPython 3.6.3

It’s recommended to write {sys.executable} rather than plain python inorder to ensure that commands are run in the Python installation matchingthe currently running notebook (which may not be the same Pythoninstallation that the python command refers to).

Note

Due to the way most Linux distributions are handling the Python 3migration, Linux users using the system Python without creating a virtualenvironment first should replace the python command in this tutorialwith python3 and the python -m pip command with python3 -m pip --user. Do notrun any of the commands in this tutorial with sudo: if you get apermissions error, come back to the section on creating virtual environments,set one up, and then continue with the tutorial as written.

Ensure you can run pip from the command line#

Additionally, you’ll need to make sure you have pip available. You cancheck this by running:

python3 -m pip --version

py -m pip --version

If you installed Python from source, with an installer from python.org, orvia Homebrew you should already have pip. If you’re on Linux and installedusing your OS package manager, you may have to install pip separately, seeInstalling pip/setuptools/wheel with Linux Package Managers.

If pip isn’t already installed, then first try to bootstrap it from thestandard library:

python3 -m ensurepip --default-pip

py -m ensurepip --default-pip

If that still doesn’t allow you to run python -m pip:

  • Securely Download get-pip.py [1]

  • Run python get-pip.py. [2] This will install or upgrade pip.Additionally, it will install Setuptools and wheel if they’renot installed already.

    Warning

    Be cautious if you’re using a Python install that’s managed by youroperating system or another package manager. get-pip.py does notcoordinate with those tools, and may leave your system in aninconsistent state. You can use python get-pip.py --prefix=/usr/local/to install in /usr/local which is designed for locally-installedsoftware.

Ensure pip, setuptools, and wheel are up to date#

While pip alone is sufficient to install from pre-built binary archives,up to date copies of the setuptools and wheel projects are usefulto ensure you can also install from source archives:

python3 -m pip install --upgrade pip setuptools wheel

py -m pip install --upgrade pip setuptools wheel

Optionally, create a virtual environment#

See section below for details,but here’s the basic venv [3] command to use on a typical Linux system:

python3 -m venv tutorial_envsource tutorial_env/bin/activate

py -m venv tutorial_envtutorial_env\Scripts\activate

This will create a new virtual environment in the tutorial_env subdirectory,and configure the current shell to use it as the default python environment.

Creating Virtual Environments#

Python “Virtual Environments” allow Python packages to be installed in an isolated location for a particular application,rather than being installed globally. If you are looking to safely installglobal command line tools,see Installing stand alone command line tools.

Imagine you have an application that needs version 1 of LibFoo, but anotherapplication requires version 2. How can you use both these applications? If youinstall everything into /usr/lib/python3.6/site-packages (or whatever yourplatform’s standard location is), it’s easy to end up in a situation where youunintentionally upgrade an application that shouldn’t be upgraded.

Or more generally, what if you want to install an application and leave it be?If an application works, any change in its libraries or the versions of thoselibraries can break the application.

Also, what if you can’t install packages into theglobal site-packages directory? For instance, on a shared host.

In all these cases, virtual environments can help you. They have their owninstallation directories and they don’t share libraries with other virtualenvironments.

Currently, there are two common tools for creating Python virtual environments:

  • venv is available by default in Python 3.3 and later, and installspip into created virtual environments in Python 3.4 and later(Python versions prior to 3.12 also installed Setuptools).

  • virtualenv needs to be installed separately, but supports Python 2.7+and Python 3.3+, and pip, Setuptools and wheel arealways installed into created virtual environments by default (regardless ofPython version).

The basic usage is like so:

Using venv:

python3 -m venv <DIR>source <DIR>/bin/activate

py -m venv <DIR><DIR>\Scripts\activate

Using virtualenv:

python3 -m virtualenv <DIR>source <DIR>/bin/activate

virtualenv <DIR><DIR>\Scripts\activate

For more information, see the venv docs orthe virtualenv docs.

The use of source under Unix shells ensuresthat the virtual environment’s variables are set within the currentshell, and not in a subprocess (which then disappears, having nouseful effect).

In both of the above cases, Windows users should not use thesource command, but should rather run the activatescript directly from the command shell like so:

<DIR>\Scripts\activate

Managing multiple virtual environments directly can become tedious, so thedependency management tutorial introduces ahigher level tool, Pipenv, that automatically manages a separatevirtual environment for each project and application that you work on.

Use pip for Installing#

pip is the recommended installer. Below, we’ll cover the most commonusage scenarios. For more detail, see the pip docs,which includes a complete Reference Guide.

Installing from PyPI#

The most common usage of pip is to install from the Python PackageIndex using a requirement specifier. Generally speaking, a requirement specifier iscomposed of a project name followed by an optional version specifier. A full description of the supported specifiers can befound in the Version specifier specification.Below are some examples.

To install the latest version of “SomeProject”:

python3 -m pip install "SomeProject"

py -m pip install "SomeProject"

To install a specific version:

python3 -m pip install "SomeProject==1.4"

py -m pip install "SomeProject==1.4"

To install greater than or equal to one version and less than another:

python3 -m pip install "SomeProject>=1,<2"

py -m pip install "SomeProject>=1,<2"

To install a version that’s compatiblewith a certain version: [4]

python3 -m pip install "SomeProject~=1.4.2"

py -m pip install "SomeProject~=1.4.2"

In this case, this means to install any version “==1.4.*” version that’s also“>=1.4.2”.

Source Distributions vs Wheels#

pip can install from either Source Distributions (sdist) or Wheels, but if both are presenton PyPI, pip will prefer a compatible wheel. You can overridepip`s default behavior by e.g. using its –no-binary option.

Wheels are a pre-built distribution format that provides faster installation compared to SourceDistributions (sdist), especially when aproject contains compiled extensions.

If pip does not find a wheel to install, it will locally build a wheeland cache it for future installs, instead of rebuilding the source distributionin the future.

Upgrading packages#

Upgrade an already installed SomeProject to the latest from PyPI.

python3 -m pip install --upgrade SomeProject

py -m pip install --upgrade SomeProject

Installing to the User Site#

To install packages that are isolated to thecurrent user, use the --user flag:

python3 -m pip install --user SomeProject

py -m pip install --user SomeProject

For more information see the User Installs sectionfrom the pip docs.

Note that the --user flag has no effect when inside a virtual environment- all installation commands will affect the virtual environment.

If SomeProject defines any command-line scripts or console entry points,--user will cause them to be installed inside the user base’s binarydirectory, which may or may not already be present in your shell’sPATH. (Starting in version 10, pip displays a warning wheninstalling any scripts to a directory outside PATH.) If the scriptsare not available in your shell after installation, you’ll need to add thedirectory to your PATH:

  • On Linux and macOS you can find the user base binary directory by runningpython -m site --user-base and adding bin to the end. For example,this will typically print ~/.local (with ~ expanded to the absolutepath to your home directory) so you’ll need to add ~/.local/bin to yourPATH. You can set your PATH permanently by modifying ~/.profile.

  • On Windows you can find the user base binary directory by running py -msite --user-site and replacing site-packages with Scripts. Forexample, this could returnC:\Users\Username\AppData\Roaming\Python36\site-packages so you wouldneed to set your PATH to includeC:\Users\Username\AppData\Roaming\Python36\Scripts. You can set your userPATH permanently in the Control Panel. You may need to log out for thePATH changes to take effect.

Requirements files#

Install a list of requirements specified in a Requirements File.

python3 -m pip install -r requirements.txt

py -m pip install -r requirements.txt

Installing from VCS#

Install a project from VCS in “editable” mode. For a full breakdown of thesyntax, see pip’s section on VCS Support.

python3 -m pip install -e SomeProject @ git+https://git.repo/some_pkg.git # from gitpython3 -m pip install -e SomeProject @ hg+https://hg.repo/some_pkg # from mercurialpython3 -m pip install -e SomeProject @ svn+svn://svn.repo/some_pkg/trunk/ # from svnpython3 -m pip install -e SomeProject @ git+https://git.repo/some_pkg.git@feature # from a branch

py -m pip install -e SomeProject @ git+https://git.repo/some_pkg.git # from gitpy -m pip install -e SomeProject @ hg+https://hg.repo/some_pkg # from mercurialpy -m pip install -e SomeProject @ svn+svn://svn.repo/some_pkg/trunk/ # from svnpy -m pip install -e SomeProject @ git+https://git.repo/some_pkg.git@feature # from a branch

Installing from other Indexes#

Install from an alternate index

python3 -m pip install --index-url http://my.package.repo/simple/ SomeProject

py -m pip install --index-url http://my.package.repo/simple/ SomeProject

Search an additional index during install, in addition to PyPI

python3 -m pip install --extra-index-url http://my.package.repo/simple SomeProject

py -m pip install --extra-index-url http://my.package.repo/simple SomeProject

Installing from a local src tree#

Installing from local src inDevelopment Mode,i.e. in such a way that the project appears to be installed, but yet isstill editable from the src tree.

python3 -m pip install -e <path>

py -m pip install -e <path>

You can also install normally from src

python3 -m pip install <path>

py -m pip install <path>

Installing from local archives#

Install a particular source archive file.

python3 -m pip install ./downloads/SomeProject-1.0.4.tar.gz

py -m pip install ./downloads/SomeProject-1.0.4.tar.gz

Install from a local directory containing archives (and don’t check PyPI)

python3 -m pip install --no-index --find-links=file:///local/dir/ SomeProjectpython3 -m pip install --no-index --find-links=/local/dir/ SomeProjectpython3 -m pip install --no-index --find-links=relative/dir/ SomeProject

py -m pip install --no-index --find-links=file:///local/dir/ SomeProjectpy -m pip install --no-index --find-links=/local/dir/ SomeProjectpy -m pip install --no-index --find-links=relative/dir/ SomeProject

Installing from other sources#

To install from other data sources (for example Amazon S3 storage)you can create a helper application that presents the datain a format compliant with the simple repository API:,and use the --extra-index-url flag to direct pip to use that index.

./s3helper --port=7777python -m pip install --extra-index-url http://localhost:7777 SomeProject

Installing Prereleases#

Find pre-release and development versions, in addition to stable versions. Bydefault, pip only finds stable versions.

python3 -m pip install --pre SomeProject

py -m pip install --pre SomeProject

Installing “Extras”#

Extras are optional “variants” of a package, which may includeadditional dependencies, and thereby enable additional functionalityfrom the package. If you wish to install an extra for a package whichyou know publishes one, you can include it in the pip installation command:

python3 -m pip install 'SomePackage[PDF]'python3 -m pip install 'SomePackage[PDF]==3.0'python3 -m pip install -e '.[PDF]' # editable project in current directory

py -m pip install "SomePackage[PDF]"py -m pip install "SomePackage[PDF]==3.0"py -m pip install -e ".[PDF]" # editable project in current directory
Installing Packages - Python Packaging User Guide (2024)

FAQs

How to install packaging module in Python? ›

Ensure you can run pip from the command line
  1. Securely Download get-pip.py [1]
  2. Run python get-pip.py . [2] This will install or upgrade pip. Additionally, it will install Setuptools and wheel if they're not installed already. Warning.

How to install user package in Python? ›

Install a package using its setup.py script
  1. Set up your user environment (as described in the previous section).
  2. Use tar to unpack the archive (for example, foo-1.0.3.gz ); for example: tar -xzf foo-1.0.3.gz. ...
  3. Change ( cd ) to the new directory, and then, on the command line, enter: python setup.py install --user.
Mar 19, 2024

How to manually install a Python package? ›

How to Manually Install Python Packages?
  1. Step 1: Install Python. ...
  2. Step 2: Download Python Package From Any Repository. ...
  3. Step 3: Extract The Python Package. ...
  4. Step 4: Copy The Package In The Site Package Folder. ...
  5. Step 5: Install The Package.
Sep 23, 2022

How to install Python package with setup? ›

Installing Python Packages with Setup.py

To install a package that includes a setup.py file, open a command or terminal window and: cd into the root directory where setup.py is located. Enter: python setup.py install.

What is pip install packaging? ›

Pip install is the command you use to install Python packages with the Pip package manager. If you're wondering what Pip stands for, the name Pip is a recursive acronym for 'Pip Installs Packages. ' There are two ways to install Python packages with pip: Manual installation. Using a requirements.

How to install packages in Python using command prompt? ›

Method 3 : Using Command Prompt/Terminal
  1. Type "Command Prompt" in the search bar on Windows OS. ...
  2. Search for folder named Scripts where pip applications are stored.
  3. In command prompt, type cd <file location of Scripts folder> cd refers to change directory. ...
  4. Type pip install package-name.

How to install Python packages using pip install? ›

Q: How do I use PIP to install Python packages? A: To install a package using PIP, you can use the following command: pip install package_name. Replace package_name with the name of the package you want to install. PIP will automatically download and install the latest version of the package from PyPI.

Where does Python install user packages? ›

Locally installed Python and all packages will be installed under a directory similar to ~/. local/bin/ for a Unix-based system, or \Users\Username\AppData\Local\Programs\ for Windows.

How does pip install Python packages? ›

The pip install <package> command always looks for the latest version of the package and installs it. It also searches for dependencies listed in the package metadata and installs them to ensure that the package has all the requirements that it needs.

Can I use Python package without installing? ›

Yes you can… But for this you need to download packages on machine which has internet and copy downloaded packages in machine without internet. I also used this way for installing python packages in our production environment (no internet).

How to install all Python modules? ›

To install modules in Python, we can follow these steps:
  1. Step 1: Open the Command Prompt.
  2. Step 2: Installing Python Modules with Pip.
  3. Step 3: Verifying Module Installation.
  4. Manual Installation of Python packages.
Mar 27, 2024

How to install Python package without sudo? ›

Installation of Python in your home directory (without sudo...
  1. Uncompress the folder: tar -zxvf Python-2.7.7.tar.gz.
  2. Move inside the directory: cd Python-2.7.7.
  3. Create the destination folder: mkdir ~/.localpython.
  4. Prepare the environment for building: ./configure --prefix=/home/<username>/.localpython.

How to install pip manually? ›

Method 1: Install PIP on Windows Using get-pip.py
  1. Step 1: Download PIP get-pip.py. Before installing PIP, download the get-pip.py file. ...
  2. Step 2: Installing PIP on Windows. To install PIP, run the following Python command: python get-pip.py. ...
  3. Step 3: Verify Installation. ...
  4. Step 4: Add Pip to Path. ...
  5. Step 5: Configuration.
Nov 30, 2023

How to install module in Python without pip? ›

To install any python library without pip command, we can download the package from pypi.org in and run it's setup.py file using python. This will install the package on your system. In this article, We'll talk about this process step by step.

How to manually install python package in anaconda? ›

Using Navigator
  1. Open Anaconda Navigator.
  2. Click Connect, then click SIGN IN next to Anaconda.org.
  3. Select Environments from the left-hand navigation, then look for your package by name using the Search Packages field. ...
  4. Select the checkbox of the package you want to install, then click the Apply.

How to install module PIL in Python? ›

Open Terminal (Applications/Terminal) and run:
  1. xcode-select –install (You will be prompted to install the Xcode Command Line Tools)
  2. sudo easy_install pip.
  3. sudo pip install pillow.
  4. pip3. 4 install pillow.

How to install wrapper in Python? ›

Taprik commented on Jan 8, 2018
  1. make sure you have the sdk installed.
  2. make sure you have visual studio with c++ components.
  3. open msbuild shell.
  4. cd to the repertory of the python wrappers.
  5. run cmake "." - ...
  6. open the vs project generated. ...
  7. compile it.
Jan 7, 2018

How to install pip module in Python? ›

Follow the steps below to install PIP using this method.
  1. Step 1: Download PIP get-pip.py. Before installing PIP, download the get-pip.py file. ...
  2. Step 2: Installing PIP on Windows. To install PIP, run the following Python command: python get-pip.py. ...
  3. Step 3: Verify Installation. ...
  4. Step 4: Add Pip to Path. ...
  5. Step 5: Configuration.
Nov 30, 2023

How to install Python package Flask? ›

Flask
  1. Installing. Install and update from PyPI using an installer such as pip: $ pip install -U Flask.
  2. A Simple Example. # save this as app.py from flask import Flask app = Flask(__name__) @app.route("/") def hello(): return "Hello, World!" ...
  3. Contributing. ...
  4. Donate.

Top Articles
Latest Posts
Article information

Author: Velia Krajcik

Last Updated:

Views: 5920

Rating: 4.3 / 5 (74 voted)

Reviews: 89% of readers found this page helpful

Author information

Name: Velia Krajcik

Birthday: 1996-07-27

Address: 520 Balistreri Mount, South Armand, OR 60528

Phone: +466880739437

Job: Future Retail Associate

Hobby: Polo, Scouting, Worldbuilding, Cosplaying, Photography, Rowing, Nordic skating

Introduction: My name is Velia Krajcik, I am a handsome, clean, lucky, gleaming, magnificent, proud, glorious person who loves writing and wants to share my knowledge and understanding with you.