1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-07 09:46:12 +02:00
tldr/pages/common/pipx.md

21 lines
528 B
Markdown
Raw Normal View History

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