diff --git a/docs/en/docs/index.md b/docs/en/docs/index.md index 0f3623ed5..dee3328b1 100644 --- a/docs/en/docs/index.md +++ b/docs/en/docs/index.md @@ -142,6 +142,30 @@ $ pip install "fastapi[standard]" **Note**: Make sure you put `"fastapi[standard]"` in quotes to ensure it works in all terminals. +If you prefer not to include the standard optional dependencies, you can install FastAPI with: + +
+ +```console +$ pip install fastapi + +---> 100% +``` + +
+ +For running the server, you will also need an ASGI server like Uvicorn. Install it using: + +
+ +```console +$ pip install "uvicorn[standard]" + +---> 100% +``` + +
+ ## Example ### Create it