summaryrefslogtreecommitdiffstats
path: root/hacking/README.md
diff options
context:
space:
mode:
authorSviatoslav Sydorenko (Святослав Сидоренко) <webknjaz@redhat.com>2024-09-06 17:13:06 +0200
committerGitHub <noreply@github.com>2024-09-06 17:13:06 +0200
commit59b3e49d70a50867053453a7e4fc0c5d31c03b65 (patch)
treebba9aacfc074c236a53d7a19117a4da10e2be6e0 /hacking/README.md
parentdelay keyword changed from int to float (#83901) (diff)
downloadansible-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.md2
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
```