Eclipse XLRD、XLWT 导入错误

发布于 2024-11-01 13:43:01 字数 631 浏览 3 评论 0原文

我下载了最新的 Enthought EPD python 发行版(学术版),它附带了 python 2.7。 我使用 Eclipse 作为我的 IDE。

Eclipse 设置为使用此 Python 实例。我在 XLWT 下运行了“images.py”示例文件。

“images.py”:

from xlwt import Workbook
w = Workbook()
ws = w.add_sheet('Image')
ws.insert_bitmap('python.bmp', 0, 0)
w.save('images.xls')

并且 Eclipse 返回:

Traceback (most recent call last):
  File "C:\Documents and Settings\Username\workspace\XLRDXLWT\src\xlwt\images.py", line 1, in 
<module>
    from xlwt import Workbook
ImportError: cannot import name Workbook

与我尝试在 XLRD、XLUTILS 中运行的任何其他示例类似的问题。

I downloaded the latest Enthought EPD python distribution (academic), which comes with python 2.7.
I am using Eclipse as my IDE.

Eclipse is set up to use this instance of Python. I ran the "images.py" example file under XLWT.

"images.py":

from xlwt import Workbook
w = Workbook()
ws = w.add_sheet('Image')
ws.insert_bitmap('python.bmp', 0, 0)
w.save('images.xls')

and Eclipse returned:

Traceback (most recent call last):
  File "C:\Documents and Settings\Username\workspace\XLRDXLWT\src\xlwt\images.py", line 1, in 
<module>
    from xlwt import Workbook
ImportError: cannot import name Workbook

Similar problem with any other example I try to run in XLRD, XLUTILS.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁月打碎记忆 2024-11-08 13:43:01

是的,确实,“有人”帮助您找到了答案

它与 xlrd、xlwt、xlutils 或 Eclipse 无关。

一般来说,如果您将一个 import foo 的脚本放入名为 foo 的目录中,Python 可能会尝试从该目录导入 foo ,并失败。

解决方案:不要这样做。将脚本目录重命名为 foo_examplesfoo_scripts 或类似名称。

Yes, indeed, "someone" helped you with the answer.

It's nothing to do with xlrd, xlwt, xlutils, or Eclipse.

In general, if you put a script that does import foo into a directory named foo, Python is likely to try to import foo from that directory, and fail.

Solution: Don't do that. Rename your script directory to foo_examples or foo_scripts or suchlike.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文