diff --git a/README.rst b/README.rst index 9141d4f6..06a9232b 100644 --- a/README.rst +++ b/README.rst @@ -60,7 +60,11 @@ Installation Sanic makes use of ``uvloop`` and ``ujson`` to help with performance. If you do not want to use those packages, simply add an environmental variable ``SANIC_NO_UVLOOP=true`` or ``SANIC_NO_UJSON=true`` at install time. - ``SANIC_NO_UVLOOP=true SANIC_NO_UJSON=true pip3 install sanic`` + .. code:: shell + + $ export SANIC_NO_UVLOOP=true + $ export SANIC_NO_UJSON=true + $ pip3 install sanic Hello World Example