From: Ben Darnell Date: Thu, 23 Sep 2010 16:37:32 +0000 (-0700) Subject: Update installation instructions in README. X-Git-Tag: v1.2.0~121 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4973e296ebd68bdaf5bd7fc51186b56c6c69bc91;p=thirdparty%2Ftornado.git Update installation instructions in README. Closes #142. --- diff --git a/README b/README index d50402224..89b0ed7a0 100644 --- a/README +++ b/README @@ -15,13 +15,18 @@ To install: sudo python setup.py install Tornado has been tested on Python 2.5 and 2.6. To use all of the features -of Tornado, you need to have PycURL and a JSON library like simplejson +of Tornado, you need to have PycURL and (for Python 2.5 only) simplejson installed. -On Mac OS X, you can install the packages with: +On Mac OS X 10.6, you can install the packages with: - sudo easy_install setuptools pycurl==7.16.2.1 simplejson + sudo easy_install pycurl On Ubuntu Linux, you can install the packages with: - sudo apt-get install python-pycurl python-simplejson + # Python 2.6 + sudo apt-get install python-pycurl + + # Python 2.5 + sudo apt-get install python-dev python-pycurl python-simplejson +