From ce3ae85b42f08228e4b3e29407964dbfabaaf006 Mon Sep 17 00:00:00 2001 From: Jannis Leidel Date: Fri, 1 Jan 2016 12:35:46 +0100 Subject: [PATCH] Quote package names with extras in installation docs. Fix #118. --- docs/index.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.rst b/docs/index.rst index 9aae1b7..eed2deb 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -16,11 +16,11 @@ Install from PyPI the backend specific variant of django-constance: For the (default) Redis backend:: - pip install django-constance[redis] + pip install "django-constance[redis]" For the database backend:: - pip install django-constance[database] + pip install "django-constance[database]" Alternatively -- if you're sure that the dependencies are already installed -- you can also run::