Missing tutorial.conf file on cherrypy demo

I installed cherryPy according to the instructions here:

http://docs.cherrypy.org/en/latest/install.html

When I run:

python -m cherrypy.tutorial.tut01_helloworld

I get the following error:

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'

Is this something missing / wrong with CherryPy or is it what I should have done?

thank

+4
source share
3 answers

There was the same problem. Found missing file here:

Python34\Lib\site-packages\PURELIB\cherrypy\tutorial
+7
source

I had the same issue on OS X 10.10 Yosemite. I got the file from github source and copied it to / Library / Python / 2.7 / site-packages / cherrypy / tutorial:

https://github.com/cherrypy/cherrypy/blob/master/cherrypy/tutorial/tutorial.conf
+3
source

python 2.7, tutorial.conf

C:\Python27\cherrypy\tutorial
0

All Articles