~cbehrens/nova/lp844160-build-works-with-zones

« back to all changes in this revision

Viewing changes to vendor/tornado/README

  • Committer: Jesse Andrews
  • Date: 2010-05-28 06:05:26 UTC
  • Revision ID: git-v1:bf6e6e718cdc7488e2da87b21e258ccc065fe499
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Tornado
 
2
=======
 
3
Tornado is an open source version of the scalable, non-blocking web server
 
4
and and tools that power FriendFeed. Documentation and downloads are
 
5
available at http://www.tornadoweb.org/
 
6
 
 
7
Tornado is licensed under the Apache Licence, Version 2.0
 
8
(http://www.apache.org/licenses/LICENSE-2.0.html).
 
9
 
 
10
Installation
 
11
============
 
12
To install:
 
13
 
 
14
    python setup.py build
 
15
    sudo python setup.py install
 
16
 
 
17
Tornado has been tested on Python 2.5 and 2.6. To use all of the features
 
18
of Tornado, you need to have PycURL and a JSON library like simplejson
 
19
installed.
 
20
 
 
21
On Mac OS X, you can install the packages with:
 
22
 
 
23
    sudo easy_install setuptools pycurl==7.16.2.1 simplejson
 
24
 
 
25
On Ubuntu Linux, you can install the packages with:
 
26
 
 
27
    sudo apt-get install python-pycurl python-simplejson