1

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?

Sohn
  • 166
  • 3
  • 13

1 Answers1

1

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.

Senjuti Mahapatra
  • 2,570
  • 4
  • 27
  • 38
Mg Mg Kyaw
  • 81
  • 5
  • Sorry to say this, I can't use these modules anyway because of some other issues. If any other module is available, then would be really helpful for my scenario. Thanks for your suggestion. – Sohn Jan 25 '17 at 07:44
  • This module also python excel read/write available >>> https://pypi.python.org/pypi/xlrd. – Mg Mg Kyaw Jan 25 '17 at 08:07
  • Can 'xlrd' help to create/write an excel file? – Sohn Jan 25 '17 at 08:43
  • This source will be: http://stackoverflow.com/questions/16560289/using-python-write-an-excel-file-with-columns-copied-from-another-excel-file – Mg Mg Kyaw Jan 25 '17 at 08:47