0% found this document useful (0 votes)
18 views

190 - Note On Loading Excel Files

This document provides instructions for loading an Excel file into Python using pandas. It notes that pandas may require the xlrd library as a dependency. If an error occurs regarding xlrd, the document recommends installing xlrd using either pip install xlrd or pip3 install xlrd to resolve the issue.

Uploaded by

jd
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
18 views

190 - Note On Loading Excel Files

This document provides instructions for loading an Excel file into Python using pandas. It notes that pandas may require the xlrd library as a dependency. If an error occurs regarding xlrd, the document recommends installing xlrd using either pip install xlrd or pip3 install xlrd to resolve the issue.

Uploaded by

jd
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Note on Loading Excel Files

Section 17, Lecture 190


Note: The next lecture consists of an exercise where you will need to load
an Excel (.xlsx) file in Python with pandas. Pandas may require the xlrd library
as a dependency so if you get an error such as ModuleNotFoundError: No module
named 'xlrd' you can fix that by installing xlrd:

pip install xlrd

or

pip3 install xlrd

You might also like