@@ -42,14 +42,14 @@ packages, and allows you to safely run the program from anywhere.
4242
4343Now you can install packages with ``pipx install `` and access the package's entry point(s) from anywhere.
4444
45- ::
45+ .. code-block :: console
4646
4747 $ pipx install PACKAGE
4848 $ ENTRYPOINT_OF_PACKAGE [ARGS]
4949
5050 For example
5151
52- ::
52+ .. code-block :: console
5353
5454 $ pipx install cowsay
5555 installed package cowsay 2.0, Python 3.6.2+
@@ -69,7 +69,7 @@ For example
6969
7070 To see a list of packages installed with pipx and which CLI applications are available, use ``pipx list ``.
7171
72- ::
72+ .. code-block :: console
7373
7474 $ pipx list
7575 venvs are in /Users/user/.local/pipx/venvs
@@ -89,10 +89,10 @@ To see a list of packages installed with pipx and which CLI applications are ava
8989
9090 To upgrade or uninstall the package
9191
92- ::
92+ .. code-block :: bash
9393
94- $ pipx upgrade PACKAGE
95- $ pipx uninstall PACKAGE
94+ pipx upgrade PACKAGE
95+ pipx uninstall PACKAGE
9696
9797 ``pipx `` can be upgraded or uninstalled with pip
9898
@@ -113,21 +113,21 @@ To upgrade or uninstall the package
113113 ``pipx `` also allows you to install and run the latest version of a cli tool
114114in a temporary, ephemeral environment.
115115
116- ::
116+ .. code-block :: bash
117117
118- $ pipx run PACKAGE [ARGS]
118+ pipx run PACKAGE [ARGS]
119119
120120 For example
121121
122- ::
122+ .. code-block :: bash
123123
124- $ pipx run cowsay moooo
124+ pipx run cowsay moooo
125125
126126 To see the full list of commands ``pipx `` offers, run
127127
128- ::
128+ .. code-block :: bash
129129
130- $ pipx --help
130+ pipx --help
131131
132132 You can learn more about ``pipx `` at its homepage,
133133https://github.com/pypa/pipx.
0 commit comments