1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 15:15:23 +02:00

pipx: update page (#8696)

This commit is contained in:
Jason Lam 2022-10-05 22:27:34 +08:00 committed by GitHub
parent eb282ced9b
commit 1e6b25cd61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
# pipx
> Install and run python applications in isolated environments.
> More information: <https://github.com/pipxproject/pipx>.
> More information: <https://github.com/pypa/pipx>.
- Run an app in a temporary virtual environment:
@ -18,3 +18,11 @@
- Run an app in a temporary virtual environment with a package name different from the executable:
`pipx run --spec {{httpx-cli}} {{httpx}} {{http://www.github.com}}`
- Inject dependencies into an existing virtual environment:
`pipx inject {{package}} {{dependency1 dependency2 ...}}`
- Install a package in a virtual environment with pip arguments:
`pipx install --pip-args='{{pip-args}}' {{package}}`