tldr/pages/common/pipx.md

21 lines
528 B
Markdown
Raw Normal View History

2020-10-05 12:05:06 +01:00
# 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`
2020-12-04 12:37:44 +00:00
- Run an app in a temporary virtual environment with a package name different from the executable:
2020-10-05 12:05:06 +01:00
`pipx run --spec {{httpx-cli}} {{httpx}} {{http://www.github.com}}`