+=== "Linux, macOS, Windows Bash"
-```console
-// You could create an env var MY_NAME with
-$ export MY_NAME="Wade Wilson"
+
-// Then you could use it with other programs, like
-$ echo "Hello $MY_NAME"
+ ```console
+ // You could create an env var MY_NAME with
+ $ export MY_NAME="Wade Wilson"
-Hello Wade Wilson
-```
+ // Then you could use it with other programs, like
+ $ echo "Hello $MY_NAME"
-
+ Hello Wade Wilson
+ ```
-Or in PowerShell in Windows:
+
-
+=== "Windows PowerShell"
-```console
-// Create an env var MY_NAME
-$ $Env:MY_NAME = "Wade Wilson"
+
-// Use it with other programs, like
-$ echo "Hello $Env:MY_NAME"
+ ```console
+ // Create an env var MY_NAME
+ $ $Env:MY_NAME = "Wade Wilson"
-Hello Wade Wilson
-```
+ // Use it with other programs, like
+ $ echo "Hello $Env:MY_NAME"
-
+ Hello Wade Wilson
+ ```
+
+
### Read env vars in Python
diff --git a/docs/en/docs/contributing.md b/docs/en/docs/contributing.md
index 66fc8efc9..416bc32f8 100644
--- a/docs/en/docs/contributing.md
+++ b/docs/en/docs/contributing.md
@@ -24,59 +24,67 @@ That will create a directory `./env/` with the Python binaries and then you will
Activate the new environment with:
-
+=== "Linux, macOS"
-```console
-$ source ./env/bin/activate
-```
+
-
+ ```console
+ $ source ./env/bin/activate
+ ```
-Or in Windows' PowerShell:
+
-
+=== "Windows PowerShell"
-```console
-$ .\env\Scripts\Activate.ps1
-```
+
-
+ ```console
+ $ .\env\Scripts\Activate.ps1
+ ```
-Or if you use Bash for Windows (e.g.
Git Bash):
+
-
+=== "Windows Bash"
-```console
-$ source ./env/Scripts/activate
-```
+ Or if you use Bash for Windows (e.g.
Git Bash):
-
+
+
+ ```console
+ $ source ./env/Scripts/activate
+ ```
+
+
To check it worked, use:
-
+=== "Linux, macOS, Windows Bash"
-```console
-$ which pip
+
-some/directory/fastapi/env/bin/pip
-```
+ ```console
+ $ which pip
-
+ some/directory/fastapi/env/bin/pip
+ ```
-If it shows the `pip` binary at `env/bin/pip` then it worked. 🎉
+
-Or in Windows PowerShell:
+=== "Windows PowerShell"
-
+
-```console
-$ Get-Command pip
+ ```console
+ $ Get-Command pip
+
+ some/directory/fastapi/env/bin/pip
+ ```
+
+
+
+If it shows the `pip` binary at `env/bin/pip` then it worked. 🎉
-some/directory/fastapi/env/bin/pip
-```
-
!!! tip
Every time you install a new package with `pip` under that environment, activate the environment again.
@@ -103,27 +111,31 @@ Now re-activate the environment to make sure you are using the `flit` you just i
And now use `flit` to install the development dependencies:
-
+=== "Linux, macOS"
-```console
-$ flit install --deps develop --symlink
+
----> 100%
-```
+ ```console
+ $ flit install --deps develop --symlink
-
+ ---> 100%
+ ```
-If you are on Windows, use `--pth-file` instead of `--symlink`:
+
-
+=== "Windows"
-```console
-$ flit install --deps develop --pth-file
+ If you are on Windows, use `--pth-file` instead of `--symlink`:
----> 100%
-```
+
-
+ ```console
+ $ flit install --deps develop --pth-file
+
+ ---> 100%
+ ```
+
+
It will install all the dependencies and your local FastAPI in your local environment.
diff --git a/docs/en/docs/deployment.md b/docs/en/docs/deployment.md
index 8ca7c433f..94ab1b90b 100644
--- a/docs/en/docs/deployment.md
+++ b/docs/en/docs/deployment.md
@@ -329,55 +329,61 @@ You can deploy **FastAPI** directly without Docker too.
You just need to install an ASGI compatible server like:
-*