Does xlwings require an excel install

橙三吉。 提交于 2019-12-05 12:09:41

xlwings is indeed made for interacting with a running instance of Excel and therefore does not run on Linux.

You will want to have a look into the pandas to_excel method or you may even want to use one of the underlying libraries directly that this method uses (XlsxWriter, openpyxl and xlwt).

In short, with pandas you can do:

df.to_excel('output.xlsx', 'Sheet1')
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!