From ae7333d5984acb561689d357e27fb929adac663a Mon Sep 17 00:00:00 2001 From: Pablo Hoffman Date: Thu, 9 Jul 2009 16:49:20 -0300 Subject: [PATCH] added simplejson optional dependency to doc --- docs/intro/install.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/intro/install.rst b/docs/intro/install.rst index 25668d011..82da0b3f4 100644 --- a/docs/intro/install.rst +++ b/docs/intro/install.rst @@ -32,6 +32,7 @@ Requirements Optional: * `pyopenssl `_ (for HTTPS support, highly recommended) +* `simplejson `_ (for (de)serializing JSON) * `spidermonkey `_ (for parsing Javascript) .. _intro-install-step1: @@ -60,7 +61,7 @@ If you're running Ubuntu/Debian Linux run the following command as root:: To install optional libraries:: - apt-get install python-pyopenssl spidermonkey-bin + apt-get install python-pyopenssl python-simplejson spidermonkey-bin Arch Linux ---------- @@ -71,7 +72,7 @@ If you are running Arch Linux run the following command as root:: To install optional libraries:: - pacman -S pyopenssl spidermonkey + pacman -S pyopenssl spidermonkey python-simplejson Mac OS X --------