CherryPy坏了吗?我只是设置它并尝试使用路由调度程序,但它有一个导入错误,我的代码如下:
import cherrypy
mapper = cherrypy.dispatch.RoutesDispatcher()
错误是:
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Users/jwesonga/environments/cherrypy/lib/python2.6/site-packages/CherryPy-3.2.2-py2.6.egg/cherrypy/_cpdispatch.py", line 463, in __init__
import routes
ImportError: No module named routes
我在Mac上,我使用virtualenv为后者尝试了3.2.2和3.0。
答案 0 :(得分:6)
我已成功将CherryPy与OS X下的路由调度程序一起使用。
您显示的错误是:
ImportError: No module named routes
这很清楚 - Python无法找到routes
模块。你安装好了吗?这不是CherryPy的一部分,它是您需要安装的独立模块。如果您使用的是MacPorts,则应该能够:
port install py-routes
(或py25-routes
或py26-routes
,具体取决于您使用的是哪种Python。如果你正在使用virtualenv,你可以简单地运行:
easy_install routes