1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

Merge pull request #10536 from pradyunsg/docs/fix-wordin

This commit is contained in:
Pradyun Gedam 2021-10-18 20:27:15 +01:00 committed by GitHub
commit 902b9e7a1a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,7 +54,9 @@ depending on the package), the generated wheel is added to pip's wheel cache
and will be used for this installation. The built wheel is cached locally
by pip to avoid repeated identical builds.
If this wheel generation fails, pip will attempt a direct installation instead.
If this wheel generation fails, pip runs `setup.py clean` to clean up any build
artifacts that may have been generated. After that, pip will attempt a direct
installation.
### Direct Installation
@ -70,11 +72,6 @@ For installing packages in "editable" mode
`setup.py develop`, which will use setuptools' mechanisms to perform an
editable/development installation.
### Cleanup
After attempting installation, pip may run `setup.py clean` to clean up build
artifacts from that setuptools has generated.
## Setuptools Injection
To support projects that directly use `distutils`, pip injects `setuptools` into