-
-
Notifications
You must be signed in to change notification settings - Fork 33

Description
I am having issues getting PyInstaller to load in the plugins for pyexcel (specifically pyexcel-xlsx). I have looked at both pyexcel and pyexcel-io pages that explain what I need to add as the --hidden-import
. PyInstaller does successfully create an executable, but no matter what I put as my --hidden-import
I end up with the error pyexcel_io.exceptions.SupportingPluginAvailableButNotInstalled: Please install one of these plugins for read data in 'xlsx': pyexcel-xls,pyexcel-xlsx
. I found a question asking about this same problem on stackoverflow and they answered their own question by just importing the plugins directly. This worked for me as well and I just added import pyexcel_xlsx
to my python file. I was wondering if their is a bug here as I noticed this has been asked before across the repositories, but people seemed to have figured it out, so maybe I am missing something.
Thanks for the help.