From a3ce094b676cd443d818f7d2ff27175c8e461d42 Mon Sep 17 00:00:00 2001 From: Anay Nayak Date: Mon, 5 Oct 2020 16:35:06 +0530 Subject: [PATCH] pipx: add page (#4477) --- pages/common/pipx.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pages/common/pipx.md diff --git a/pages/common/pipx.md b/pages/common/pipx.md new file mode 100644 index 000000000..c26b7f913 --- /dev/null +++ b/pages/common/pipx.md @@ -0,0 +1,20 @@ +# pipx + +> Install and run python applications in isolated environments. +> More information: . + +- 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}}`