私はweb.pyを使用するには、小さなhelloworldのサイトを書くが、私はpython code.py
を実行すると、私はエラーメッセージが表示されます:ここでWeb.py - はAttributeError:「モジュール」オブジェクトが属性「アプリケーション」を持っていない
Traceback (most recent call last): File "E:\Python25\webpy\web\mysite.py", line 1, in <module>
import web File "E:\Python25\webpy\web\web.py", line 4, in <module>
app = web.application(urls, globals()) AttributeError: 'module' object has no attribute 'application'
は私ですコード(web.pyのチュートリアルから貼り付け):
import web
urls = ('/','Index',
)
class Index:
def GET(self):
return "Hello,world!"
app=web.application(urls,globals())
if __name__=="__main__":
app.run(
PS:web.pyのバージョンは0.35です。
あなたのWebモジュールがWeb.pyと競合していたことを意味しますが、Web.py :( – Xhinking
)\ web \ webに\ _ \ _ init \ _ \ _。pyがありますか? – Nix
はい、私はwebpy \ webで__init__.pyを持っています – Xhinking