diff --git a/docs/howto/deployment/asgi/uvicorn.txt b/docs/howto/deployment/asgi/uvicorn.txt
index cfce90fec1..cd7cacd72f 100644
--- a/docs/howto/deployment/asgi/uvicorn.txt
+++ b/docs/howto/deployment/asgi/uvicorn.txt
@@ -47,13 +47,13 @@ To install Uvicorn and Gunicorn, use the following:
 
 .. code-block:: shell
 
-    python -m pip install uvicorn gunicorn
+    python -m pip install uvicorn uvicorn-worker gunicorn
 
 Then start Gunicorn using the Uvicorn worker class like this:
 
 .. code-block:: shell
 
-    python -m gunicorn myproject.asgi:application -k uvicorn.workers.UvicornWorker
+    python -m gunicorn myproject.asgi:application -k uvicorn_worker.UvicornWorker
 
 .. _Uvicorn: https://www.uvicorn.org/
 .. _Gunicorn: https://gunicorn.org/