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 am using Python 2.5 on Windows 7 (64bit).

I installed pycurl-7.15.5.1 (with win binaries) and tornado (using pip).

When I run the following hello world code:

import tornado.ioloop
import tornado.web

class MainHandler(tornado.web.RequestHandler):
    def get(self):
        self.write("Hello World!")

if __name__=='__main__':
    app = tornado.web.Application([(r"/",MainHandler),])
    application.listen(8888)
    tornado.ioloop.IOLoop.instance().start()

I get the following error:-

Traceback (most recent call last):

  File "hello_tornado.py", line 11, in <module>
    application.listen(8888)
  File "c:\Python25\Lib\site-packages\tornado\web.py", line 1193, in listen
    server.listen(port, address)
  File "c:\Python25\Lib\site-packages\tornado\netutil.py", line 100, in listen
    sockets = bind_sockets(port, address=address)
  File "c:\Python25\Lib\site-packages\tornado\netutil.py", line 263, in bind_sockets
    sock.setsockopt(socket.IPPROTO_IPV6, socket.IPV6_V6ONLY, 1)
  AttributeError: 'module' object has no attribute 'IPV6_V6ONLY'
share|improve this question

2 Answers

from tornado web page (http://www.tornadoweb.org/)

Platforms: Tornado should run on any Unix-like platform, although for the best performance and scalability only Linux and BSD (including BSD derivatives like Mac OS X) are recommended.

I think it is not compatible with windows

Things similar with tornado can be achieve with twisted framework http://twistedmatrix.com which works under windows

interesting pointers are

http://twistedmatrix.com/documents/current/web/howto/web-in-60/index.html

and

http://twistedmatrix.com/documents/current/web/howto/web-in-60/dynamic-content.html

share|improve this answer
why down vote ? – Xavier Combelle Dec 20 '11 at 15:29
It is compatible with windows. It runs ok on my win7. – akaRem May 12 '12 at 6:58

Tornado has some IPv6 confusion on windows apparently. You can fix it by specifiyig the IP you want it to listen on like this:

application.listen(8888,'127.0.0.1')

or maybe

application.listen(8888,'0.0.0.0')
share|improve this answer

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.