Skip to content

Commit

Permalink
📝 Do not prefix calls with python -m when unnecessary
Browse files Browse the repository at this point in the history
  • Loading branch information
alexreg committed Nov 9, 2022
1 parent 3ef77de commit 0abcdc8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/tutorial/package.md
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ But you can also call Python with the `-m` *CLI Option* and pass a module for it
<div class="termy">

```console
$ python -m pip install fastapi
$ pip install fastapi
```

</div>
Expand Down
4 changes: 2 additions & 2 deletions docs/typer-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Install **Typer CLI**:
<div class="termy">

```console
$ python -m pip install typer-cli
$ pip install typer-cli
---> 100%
Successfully installed typer-cli
```
Expand Down Expand Up @@ -137,7 +137,7 @@ For it to work, you would also install **Typer**:
<div class="termy">

```console
$ python -m pip install typer
$ pip install typer
---> 100%
Successfully installed typer
```
Expand Down

0 comments on commit 0abcdc8

Please sign in to comment.