Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Python 中有一个脚本,可以将值从一个电子表格复制到另一个电子表格。它与 RunPython 一起运行良好当我尝试使用 RunFrozenPython 时,它给出了这个异常
xlwings 认为调用者不是 excel,我该怎么办才能认为调用者是 Excel?RunPython 是如何成功的。
在我得到异常之前,我确实收到了一个警告,这是快照。该脚本一直等到我单击“确定”,然后出现如上所示的错误。
这是警告消息,显示的位置在我的机器上不存在 -
我通过使用解决了错误wb = Workbook("path to file")
wb = Workbook("path to file")
而不是使用wb = Workbook.caller()
wb = Workbook.caller()
这样调用者不会引用excel,而是通过其绝对路径引用excel。
我仍然可以使用帮助解决警告:)