Reputation: 166
I am working on Python 3.2.5 version and my requirement is to create and write to an excel file. I tried with xlsxwriter
and xlwt
both, but ended up in getting ImportError
. I can't install these modules.
Any other module which does excel creation please?
Upvotes: 1
Views: 213
Reputation: 91
I think your python excel lib
are not yet contained in python library path
.
Window:
C:\Python27\Lib\site-packages\XlsxWriter
In other platform, also you should try to put XlsxWriter
library under site-packages. It can solve the ImportError
.
Upvotes: 1