From 59b3e49d70a50867053453a7e4fc0c5d31c03b65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sviatoslav=20Sydorenko=20=28=D0=A1=D0=B2=D1=8F=D1=82=D0=BE?= =?UTF-8?q?=D1=81=D0=BB=D0=B0=D0=B2=20=D0=A1=D0=B8=D0=B4=D0=BE=D1=80=D0=B5?= =?UTF-8?q?=D0=BD=D0=BA=D0=BE=29?= Date: Fri, 6 Sep 2024 17:13:06 +0200 Subject: [PATCH] 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. --- hacking/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hacking/README.md b/hacking/README.md index a57690fb1d8..534a7e4db0e 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 ```