From f5162f8ab1878f8454755ef0e7424668d5e43e53 Mon Sep 17 00:00:00 2001 From: Jitesh Nair Date: Mon, 31 Dec 2018 16:00:34 +0530 Subject: [PATCH] Update README.rst Made the optional Environment variable declaration for installation more clear. --- README.rst | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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