File: getting-started.md

package info (click to toggle)
python-pipx 1.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,776 kB
  • sloc: python: 9,653; makefile: 17; sh: 7
file content (25 lines) | stat: -rw-r--r-- 342 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Now that you have pipx installed, you can install a program:

```
pipx install PACKAGE
```

for example

```
pipx install pycowsay
```

You can list programs installed:

```
pipx list
```

Or you can run a program without installing it:

```
pipx run pycowsay moooo!
```

You can view documentation for all commands by running `pipx --help`.