pip-install: add --find-links example (#6319)

This commit is contained in:
Dominik Geldmacher 2021-09-01 19:22:20 +02:00 committed by GitHub
parent f07d7f6ac5
commit 6086247131
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,6 +15,10 @@
`pip install -r {{requirements.txt}}`
- Install packages from an URL or local file archive (.tar.gz | .whl):
`pip install -f {{url|path/to/file}}`
- Install the local package in the current directory in develop (editable) mode:
`pip install -e .`