GAE导入错误
我正在尝试使用这个 python 模块 HTML.py 但 GAE 给了我 ImportError :没有名为 HTML 的模块
根据 IDLE 路径浏览器,路径在这里:
C:\Python26\lib\site-packages\HTML.py
任何人都可以帮我解决这个问题吗?
谢谢
I am trying to use this python module HTML.py but GAE gives me ImportError: No module named HTML
According to IDLE path browser the path is here:
C:\Python26\lib\site-packages\HTML.py
Can anyone help me to fix this problem?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果将 HTML.py 放在应用程序根目录中,即 app.yaml 所在的位置。假设 HTML.py 不使用任何非白名单模块,它应该可以工作。
您应该使用 Python 2.5。它可能会让您免于未来的一些头痛。我认为 App Engine Python 概述 中也提到了这一点。
If you put HTML.py in your applications root directory, where app.yaml is at. It should work, assuming HTML.py does not use any non-whitelisted modules.
You should use Python 2.5. It will probably save you from some future headaches. I think this is also mentioned in the App Engine Python Overview.