Introduction#
PDM is a modern Python package manager with PEP 582 support. It installs and manages packages
in a similar way to npm
that doesn't need to create a virtualenv at all!
Feature highlights#
- PEP 582 local package installer and runner, no virtualenv involved at all.
- Simple and relatively fast dependency resolver, mainly for large binary distributions.
- A PEP 517 build backend.
- PEP 621 project metadata.
- Flexible yet powerful plug-in system.
- Opted-in centralized installation cache like pnpm.
Installation#
PDM requires Python 3.7+ to be installed. It works on multiple platforms including Windows, Linux and MacOS.
Note
There is no restriction about what Python version your project is using, but installing PDM itself needs Python 3.7+.
Recommended installation method#
PDM requires python version 3.7 or higher.
Like Pip, PDM provides an installation script that will install PDM into an isolated environment.
1 |
|
1 |
|
For security reasons, you should verify the checksum.
The sha256 checksum is: 70ac95c53830ff41d700051c9caebd83b2b85b5d6066e8f853006f9f07293ff0
The installer will install PDM into the user site and the location depends on the system:
$HOME/.local/bin
for Unix%APPDATA%\Python\Scripts
on Windows
You can pass additional options to the script to control how PDM is installed:
1 2 3 4 5 6 7 8 9 10 |
|
You can either pass the options after the script or set the env var value.
Other installation methods#
1 |
|
1 2 |
|
1 |
|
Install the head version of GitHub repository. Make sure you have installed Git LFS on your system.
1 |
|
See also: https://pypa.github.io/pipx/
1 |
|
Enable PEP 582 globally#
To make the Python interpreters aware of PEP 582 packages, one need to add the pdm/pep582/sitecustomize.py
to the Python library search path.
For Windows users#
One just needs to execute pdm --pep582
, then environment variable will be changed automatically. Don't forget
to restart the terminal session to take effect.
For Mac and Linux users#
The command to change the environment variables can be produced by pdm --pep582 [<SHELL>]
. If <SHELL>
isn't given, PDM will pick one based on some guesses.
You may want to write a line in your .bash_profile
(or similar profiles) to make it effective when login.
For example, in bash you can do this:
1 |
|
Once again, Don't forget to restart the terminal session to take effect.
Shell Completion#
PDM supports generating completion scripts for Bash, Zsh, Fish or Powershell. Here are some common locations for each shell:
1 |
|
1 2 |
|
Oh-My-Zsh:
1 2 |
|
Then make sure pdm plugin is enabled in ~/.zshrc
1 |
|
1 2 3 4 5 6 7 8 9 10 |
|
Unicode and ANSI supports#
PDM provides a fancy terminal UI with the help of ANSI characters and unicode emojis.
It can turn on/off automatically depending on whether it is supported on your terminal.
However, if you see any garbled characters, set env var DISABLE_UNICODE_OUTPUT=1
to turn off it.
Use with IDE#
Now there are not built-in support or plugins for PEP 582 in most IDEs, you have to configure your tools manually.
PDM will write and store project-wide configurations in .pdm.toml
and you are recommended to add following lines
in the .gitignore
:
1 2 |
|
PyCharm#
Mark __pypackages__/<major.minor>/lib
as Sources Root.
Additionally, if you want to use tools from the environment (e.g. pytest
), you have to add the
__pypackages__/<major.minor>/bin
directory to the PATH
variable in the corresponding
run/debug configuration.
VSCode#
Add the following two entries to the top-level dict in .vscode/settings.json
:
1 2 3 4 |
|
Enable PEP582 globally, and make sure VSCode runs using the same user and shell you enabled PEP582 for.
Cannot enable PEP582 globally?
If for some reason you cannot enable PEP582 globally, you can still configure each "launch" in each project:
set the PYTHONPATH
environment variable in your launch configuration, in .vscode/launch.json
.
For example, to debug your pytest
run:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
|
If your package resides in a src
directory, add it to PYTHONPATH
as well:
1 |
|
Task Provider#
In addition, there is a VSCode Task Provider extension available for download.
This makes it possible for VSCode to automatically detect pdm scripts so they can be run natively as VSCode Tasks.
Seek for other IDEs or editors#
PDM Eco-system#
Awesome PDM is a curated list of awesome PDM plugins and resources.