Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ use the versions located at <https://bootstrap.pypa.io/>.
## 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
Expand All @@ -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
Expand Down