Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Missing tutorial.conf file on cherrypy demo

I have installed cherryPy as per 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 something I should have done?

thanks

like image 971
Zuriar Avatar asked Dec 20 '22 12:12

Zuriar


2 Answers

Had the same problem. Found the missing file in here:

Python34\Lib\site-packages\PURELIB\cherrypy\tutorial
like image 101
Daniel Avatar answered Jan 03 '23 05:01

Daniel


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

https://github.com/cherrypy/cherrypy/blob/master/cherrypy/tutorial/tutorial.conf
like image 44
cbonsig Avatar answered Jan 03 '23 05:01

cbonsig