Verifying xlrd Installation on Windows

Use the below code in your Python ide to verify successful installation of the xlrd package:

Python3




import xlrd
xlrd.__version__


If successfully installed you will get the following output:


How to Install xlrd in Python in Windows?

The xlrd module in python is used to retrieve information from a spreadsheet. In this article, we will look into the process of installing the xlrd module in a Windows machine.

Similar Reads

Pre-requisites:

The only thing that you need for installing the xlrd module on Windows are:...

Installing xlrd Module on Windows:

For Conda Users:...

Verifying xlrd Installation on Windows:

Use the below code in your Python ide to verify successful installation of the xlrd package:...