mirror of https://github.com/CrimsonTome/tldr.git
21 lines
527 B
Markdown
21 lines
527 B
Markdown
|
# 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}}`
|