当我尝试像这样导入时,我的 Python 无法找出子模块reportlab.graphics.shapes
:
>>> from reportlab.graphics.shapes import Drawing
Traceback (most recent call last):
File "<pyshell#14>", line 1, in <module>
from reportlab.graphics.shapes import Drawing
ImportError: No module named shapes
我已将reportlab
包复制到/site-packages并且可以成功导入模块 reportlab.graphics。
我的 Python 版本是 2.7.3。
谁能帮我解决这个问题?