xlrd.biffh.xlrderror: excel xlsx file; not supported

pandas.read_excel('cat.xlsx', engine='openpyxl')

4.5
4
CM Myers 95 points

                                    As noted in the release email, linked to from the release tweet and noted in large orange warning that appears on the front page of the documentation, and less orange, but still present, in the readme on the repository and the release on pypi:

xlrd has explicitly removed support for anything other than xls files.

In your case, the solution is to:

make sure you are on a recent version of Pandas, at least 1.0.1, and preferably the latest release. 1.2 will make his even clearer.
install openpyxl: https://openpyxl.readthedocs.io/en/stable/
change your Pandas code to be:
df1 = pd.read_excel(
     os.path.join(APP_PATH, "Data", "aug_latest.xlsm"),
     engine='openpyxl',
)

4.5 (4 Votes)
0
Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
xlrd.biffh.XLRDError: Excel xlsx file; not supported pychar, windows xlrd.biffh.XLRDError: Excel xlsx file; not supported mac XLRDError: Excel xlsx file; not supported Excel xlsx file; not supported python *** XLRDError: Excel xlsx file; not supported xlrd XLRDError: Excel xlsx file; not supported xlrd.biffh.XLRDError: Excel xlsx file; not supported in python python pandas read_excel xlrderror excel xlsx file not supported poandas read_Excel XLRDError: Excel xlsx file; not supported pxlrd.biffh.XLRDError: Excel xlsx file; not supported XLRDError: Excel xlsx file not supported python excel xlsx file not supported pd.read_excel { Error: xlrd.biffh.XLRDError: Excel xlsx file; not supported xlrd.biffh.xlrderror excel xlsx file not supported pandas Excel xlsx file; not supported Error type Excel xlsx file; not supported pd.read_excel pandas + XLRDError: Excel xlsx file; not supported pandas XLRDError: Excel xlsx file; not supported xlrd.biffh.XLRDError: Openoffice.org ODS file; not supported pd read excel .xslx file .biffh.XLRDError: Excel xlsx file; not supported xlsx file not supported python xlsx file; not supported xlrd error xlsx not supported raise XLRDError(FILE_FORMAT_DESCRIPTIONS[file_format]+'; not supported') XLRDError: Excel xlsx file; not supported "Excel xlsx file; not supported" excel xlsx file not supported in python Excel xlsx file; not supported pandas python xlrd Excelxlsx file; not supported xlrd.biffh.XLRDError: Excel xlsx file; not supported pandas xcel xlsx file; not supported Python (350) Excel xlsx file; not supported excel xlsx file not supported pandas read_excel xlsx not supported pandas xlrd.biffh.XLRDError: Excel xlsx file; not supported xlrd.biffh.XLRDError: Excel xlsx file; not supported using xlrd XLRDError: Excel xlsx file; not supported pandas read_excel xlrd.open_workbook XLRDError: Excel xlsx file; not supported excel xlsx file not supported pd read excel Exception has occurred: XLRDError Excel xlsx file; not supported read exException has occurred: XLRDError Excel xlsx file; not supported Excel xlsx file; not supported XLRDError: Excel xlsx file; not supported pandas install xlrd Excel xlsx file; not supported xlrd.biffh.XLRDError: Excel xlsx file; not supporte xlrd xlsx not supported xlrd Excel xlsx file; not supported xlrderror excel xlsx file not supported xlrd.biffh.XLRDError: Excel xlsx file; not supported xldr XLRDError: Excel xlsx file; not supported python python xlrd.biffh.XLRDError: Excel xlsx file; not supported excel xlsx file not supported xlrd XLRDError('Excel xlsx file; not supported',) xlrd.biffh.xlrderror excel xlsx file not supported python xlrd excel xlsx file not supported xlrd.biffh.xlrderror excel xlsx file not supported linux XLRDError: Excel xlsx file; not supported xlrd.biffh.xlrderror: excel xlsx file; not supported
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source