本文介绍了使用Google App Engine时导入错误的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我将以下代码行添加到Google的helloworld示例中时:
from reportlab.pdfgen import canvas
code>
我得到以下错误:
< type'exceptions.ImportError'> ;:没有名为reportlab.pdfgen的模块
I可以从python控制台获取reportlab.pdfgen库。为什么我不能从谷歌的dev_appserver获得它?
解决方案
复制模块在本地工作。 b
从
Python \Lib\site-packages\reportlab
至
helloworld \reportlab
When I add the following line to Google's helloworld example:
from reportlab.pdfgen import canvas
I get the following error:
<type 'exceptions.ImportError'>: No module named reportlab.pdfgen
I can get at the reportlab.pdfgen library from the python console. Why can't I get at it from google's dev_appserver?
解决方案
Copying the module locally worked.
From
Python\Lib\site-packages\reportlab
to
helloworld\reportlab
这篇关于使用Google App Engine时导入错误的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!