Sohn
Sohn

Reputation: 166

Create/write to an excel file in python- Import Error

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

Answers (1)

Mg Mg Kyaw
Mg Mg Kyaw

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

Related Questions