diff options
author | Sviatoslav Sydorenko (Святослав Сидоренко) <webknjaz@redhat.com> | 2024-09-06 17:13:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-06 17:13:06 +0200 |
commit | 59b3e49d70a50867053453a7e4fc0c5d31c03b65 (patch) | |
tree | bba9aacfc074c236a53d7a19117a4da10e2be6e0 /hacking/README.md | |
parent | delay keyword changed from int to float (#83901) (diff) | |
download | ansible-59b3e49d70a50867053453a7e4fc0c5d31c03b65.tar.xz ansible-59b3e49d70a50867053453a7e4fc0c5d31c03b65.zip |
Stop suggesting `easy_install` in hacking (#83909)
It's been discouraged for the past decade. And CPython actually ships
with pip nowadays, that is bundled within the built-in `ensurepip`
stdlib module.
Diffstat (limited to '')
-rw-r--r-- | hacking/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hacking/README.md b/hacking/README.md index a57690fb1d..534a7e4db0 100644 --- a/hacking/README.md +++ b/hacking/README.md @@ -18,7 +18,7 @@ and do not wish to install them from your operating system package manager, you can install them from pip ```shell -easy_install pip # if pip is not already available +python -Im ensurepip # if pip is not already available pip install -r requirements.txt ``` |