Does xlwings require an install of excel?
We are hoping to use it, with an anaconda install, on a windows server, with no EXCEL, to inject some data to a workbook and pass the workbook back to the user.
Does xlwings require an install of excel?
We are hoping to use it, with an anaconda install, on a windows server, with no EXCEL, to inject some data to a workbook and pass the workbook back to the user.
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
andxlwt
).In short, with pandas you can do: