diff --git a/docs/en/docs/advanced/websockets.md b/docs/en/docs/advanced/websockets.md index 94cf191d2..8d5771eb5 100644 --- a/docs/en/docs/advanced/websockets.md +++ b/docs/en/docs/advanced/websockets.md @@ -2,20 +2,22 @@ You can use WebSockets with **FastAPI**. -## Install `WebSockets` +## Install `uvicorn` and `websockets` -First you need to install `WebSockets`: +First you need to install `uvicorn` and `websockets`:
```console -$ pip install websockets +$ pip install uvicorn websockets ---> 100% ```
+Uvicorn uses `websockets` to handle the websocket protocol. Note that FastAPI does not use the `websockets` package directly. + ## WebSockets client ### In production