我按照说明安装了cherryPy:
http://docs.cherrypy.org/en/latest/install.html
当我跑步时:
python -m cherrypy.tutorial.tut01_helloworld
我收到以下错误:
Traceback (most recent call last):
File "/usr/lib/python2.7/runpy.py", line 162, in _run_module_as_main
"__main__", fname, loader, pkg_name)
File "/usr/lib/python2.7/runpy.py", line 72, in _run_code
exec code in run_globals
File "/usr/local/lib/python2.7/dist-packages/cherrypy/tutorial/tut01_helloworld.py", line 34, in <module>
cherrypy.quickstart(HelloWorld(), config=tutconf)
File "/usr/local/lib/python2.7/dist-packages/cherrypy/__init__.py", line 169, in quickstart
_global_conf_alias.update(config)
File "/usr/local/lib/python2.7/dist-packages/cherrypy/_cpconfig.py", line 158, in update
reprconf.Config.update(self, config)
File "/usr/local/lib/python2.7/dist-packages/cherrypy/lib/reprconf.py", line 160, in update
config = Parser().dict_from_file(config)
File "/usr/local/lib/python2.7/dist-packages/cherrypy/lib/reprconf.py", line 232, in dict_from_file
self.read(file)
File "/usr/local/lib/python2.7/dist-packages/cherrypy/lib/reprconf.py", line 202, in read
fp = open(filename)
IOError: [Errno 2] No such file or directory: '/usr/local/lib/python2.7/dist-packages/cherrypy/tutorial/tutorial.conf'
这是CherryPy遗漏/错误还是我应该做的事情?
感谢
答案 0 :(得分:7)
有同样的问题。在这里找到了丢失的文件:
Python34\Lib\site-packages\PURELIB\cherrypy\tutorial
答案 1 :(得分:4)
我在OS X 10.10 Yosemite上遇到了同样的问题。我从github源获取文件并将其复制到/Library/Python/2.7/site-packages/cherrypy/tutorial:
https://github.com/cherrypy/cherrypy/blob/master/cherrypy/tutorial/tutorial.conf
答案 2 :(得分:0)
如果您安装了python 2.7版本,则可以在此文件夹中找到tutorial.conf
文件
C:\Python27\cherrypy\tutorial