From 0c0e27809fa59cfe32550525b1eb9b08715d93f6 Mon Sep 17 00:00:00 2001 From: rraadd88 Date: Sun, 13 Jul 2025 12:30:30 -0400 Subject: [PATCH] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c776ef74..07b06785 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,8 @@ use the versions located at . ## Usage ```console -$ curl -sSL https://bootstrap.pypa.io/get-pip.py -o get-pip.py -$ python get-pip.py +curl -sSL https://bootstrap.pypa.io/get-pip.py -o get-pip.py +python get-pip.py ``` Upon execution, `get-pip.py` will install the latest version of `pip` into the @@ -24,13 +24,13 @@ or to pass other pip options such as `--no-index`. ```console # Constrain the pip version -$ python get-pip.py "pip < 21.0" +python get-pip.py "pip < 21.0" # Force the installation of `setuptools` and `wheel` on newer Python versions. -$ python get-pip.py setuptools wheel +python get-pip.py setuptools wheel # Install packages from a local directory instead of PyPI. -$ python get-pip.py --no-index --find-links=/local/copies +python get-pip.py --no-index --find-links=/local/copies ``` ### get-pip.py options