我想当我开始使用 CherryPy 时遇到了类似的问题......但我不记得它到底是什么......但修复涉及使用配置文件而不是手动传递配置:
MyProj.conf:
[全球的]
server.socket_host = "127.0.0.1"
server.socket_port = 8080
server.thread_pool = 10
MyProj.py
import os
import cherrypy
class HelloWorld:
def index(self):
return "Hello world!"
index.exposed = True
# Assumes the config file is in the directory as the source.
conf_path = os.path.dirname(os.path.abspath(__file__))
conf_path = os.path.join(conf_path, "MyProj.conf")
cherrypy.config.update(conf_path)
cherrypy.quickstart(HelloWorld())
这肯定在这里有效。
我正在使用 Python 2.6.1 和 CherryPy 3.1.1,并使用以下命令运行脚本-W ignore
:
c:\My_path> python -W 忽略 MyProj.py
如果您在 *nix 下,则应将 放在文件顶部的注释中-W ignore
。#!