我是 python 新手,我正在关注 Zed Shaw 的“Learn Python the Hard Way”。在第 50 章中,他要求您下载 lpthw.web 框架并运行我在底部列出的程序。但是,当我尝试这样做时,出现以下错误。这本书推荐使用 Python 2,但我决定尝试 Python 3。我使用的是 Windows 7 计算机。如果问题是我使用的是 Python 3,有没有办法使 Python 3 框架变得友好,或者推荐其他人学习。非常感谢你的帮助。
错误:
Traceback (most recent call last):
File "app.py", line 1, in <module>
import web
File "C:\Python33\lib\site-packages\web\__init__.py", line 14, in <module>
import utils, db, net, wsgi, http, webapi, httpserver, debugerror
ImportError: No module named 'utils'
程序:
import web
urls = (
'/', 'index'
)
app = web.application(urls, globals())
class index:
def GET(self):
greeting = "Hello World"
return greeting
if __name__ == "__main__":
app.run()