pipx: add page (#4477)

This commit is contained in:
Anay Nayak
2020-10-05 16:35:06 +05:30
committed by GitHub
parent 04d1dcf838
commit a3ce094b67

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}}`