diff --git a/docs/tutorial/package.md b/docs/tutorial/package.md
index f4a0c33509..1ec7b2057a 100644
--- a/docs/tutorial/package.md
+++ b/docs/tutorial/package.md
@@ -444,7 +444,7 @@ But you can also call Python with the `-m` *CLI Option* and pass a module for it
```console
-$ python -m pip install fastapi
+$ pip install fastapi
```
diff --git a/docs/typer-cli.md b/docs/typer-cli.md
index d6f79be741..d5b5b0d70e 100644
--- a/docs/typer-cli.md
+++ b/docs/typer-cli.md
@@ -78,7 +78,7 @@ Install **Typer CLI**:
```console
-$ python -m pip install typer-cli
+$ pip install typer-cli
---> 100%
Successfully installed typer-cli
```
@@ -137,7 +137,7 @@ For it to work, you would also install **Typer**:
```console
-$ python -m pip install typer
+$ pip install typer
---> 100%
Successfully installed typer
```