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.
This commit is contained in:
Sviatoslav Sydorenko (Святослав Сидоренко)
2024-09-06 17:13:06 +02:00
committed by GitHub
parent 9c49fdd86d
commit 59b3e49d70
+1 -1
View File
@@ -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
```