Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm fairly new to osx. Right out of the box, what are the steps to getting Tornado Server up and running?

share|improve this question

1 Answer

up vote 1 down vote accepted

For Tornado: first, get Apple's XCode (it's probably on your OS installation DVD, or get the latest from ADC after signing up for free to Apple's Developers Network) and install it.

Then, follow all the simple steps at the Tornado site, i.e.:

  • download the tarball
  • open a Terminal.App (Application/Utilities) and cd to the directory where you downloaded the tarball
  • tar xvzf tornado-0.2.tar.gz
  • cd tornado-0.2
  • python setup.py build
  • sudo python setup.py install

Optionally also sudo easy_install setuptools pycurl==7.16.2.1 simplejson to get all the features of Tornado, as the Tornado site's instructions also mention.

For lighttpd: please open a different question -- that's fundamental SO etiquette. One question per question is by far best: how would anybody else guess from your question's title that answers also contain information about lighttpd, or other different tools yet?!

share|improve this answer
To this I would add: you'll want to install the optional python dependencies -- gevent and greenlet. Use pip to install these, after installing Xcode (both of them use a C wrapper around kqueue that has to be compiled) if you can. – fish2000 Aug 14 '11 at 12:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.