如何在 OS X 10.6 上安装 Orbited
我正在尝试让 Orbited 在 OS X 10.6 上运行。在 Linux 中安装它很简单,但我似乎遇到了障碍。安装后,当我尝试运行 Orbited 服务器时,出现以下错误:
Traceback (most recent call last):
File "/opt/local/bin/orbited", line 9, in <module>
load_entry_point('orbited==0.7.10', 'console_scripts', 'orbited')()
File "/opt/local/lib/python2.5/site-packages/orbited/start.py", line 114, in main
install = _import('twisted.internet.%sreactor.install' % reactor_name)
File "/opt/local/lib/python2.5/site-packages/orbited/start.py", line 13, in _import
return reduce(getattr, name.split('.')[1:], __import__(module_import))
ImportError: No module named kqueuereactor
我扭曲了设置,它是 OS X 10.6 附带的错误。有什么解决办法吗? 提前致谢
I am trying to get Orbited working on OS X 10.6. Installing it in Linux was simple but I have seem to run into a roadblock. After installation when I try to run orbited server I get the following error
Traceback (most recent call last):
File "/opt/local/bin/orbited", line 9, in <module>
load_entry_point('orbited==0.7.10', 'console_scripts', 'orbited')()
File "/opt/local/lib/python2.5/site-packages/orbited/start.py", line 114, in main
install = _import('twisted.internet.%sreactor.install' % reactor_name)
File "/opt/local/lib/python2.5/site-packages/orbited/start.py", line 13, in _import
return reduce(getattr, name.split('.')[1:], __import__(module_import))
ImportError: No module named kqueuereactor
I have twisted setup, Its the one that comes with OS X 10.6. Any solutions for this?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
显然 KQueue Reactor 没有为 OSX 维护,这是 Mac 的问题,所以 select 是目前的选择。
如果有更好的解决方案请告诉我
Apparently the KQueue Reactor is not being maintained for OSX and its a Mac issue so select is the way to go for now.
Please let me know if there is a better solution