Skip to content Skip to sidebar Skip to footer

Pyexcel / Openpyxl __init__() Got An Unexpected Keyword Argument Error

I am receiving the following error stack when attempting to upload files back to our application. The application takes xlsx sheets and is able to parse them and upload the content

Solution 1:

So hopefully my time digging through this saves some other people some time. It appears that this issue can be resolved by updating openpyxl and one of its plugin dependents openpyxl_xlsx to the latest build. I would also recommend if you are using pyexcel to update that to the latest package as well as I believe it uses openpyxl as a dependent.

sudo pip install openpyxl --upgrade
sudo pip install openpyxl_xlsx --upgrade
sudo pip install pyexcel --upgrade

Or for specific versions...

sudo pip install --upgrade 'package-name'==0.0.0 (VersionNumber)

Post a Comment for "Pyexcel / Openpyxl __init__() Got An Unexpected Keyword Argument Error"