pipx: add page (#4477)

beep
Anay Nayak 2020-10-05 16:35:06 +05:30 committed by GitHub
parent 04d1dcf838
commit a3ce094b67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 0 deletions

20
pages/common/pipx.md Normal file
View File

@ -0,0 +1,20 @@
# pipx
> Install and run python applications in isolated environments.
> More information: <https://github.com/pipxproject/pipx>.
- Run an app in a temporary virtual environment:
`pipx run {{pycowsay}} {{moo}}`
- Install a package in a virtual environment and add entry points to path:
`pipx install {{package}}`
- List installed packages:
`pipx list`
- Run an app in a temporary virtual environment with a pakage name different from the executable:
`pipx run --spec {{httpx-cli}} {{httpx}} {{http://www.github.com}}`