Skip to content Skip to sidebar Skip to footer

Reading Xlsx Files In Py2exe

I am using pyexcel_io.get_data method to read xlsx files for my wxpython application. When I run it with python main.py, reading the file works fine and it reads the contents prope

Solution 1:

You need to tell py2exe about the hidden imports:

pyexcel_xlsx
pyexcel_xlsx.xlsxr
pyexcel_xlsx.xlsxw

Potential solution: Py2Exe and Easgui

People tried with pyinstaller with success.

Post a Comment for "Reading Xlsx Files In Py2exe"