Installing xlrd in Python on Linux

Method 1: Using pip to install xlrd Package

Follow the below steps to install the xlrd package on Linux using pip:

Step 2: Check if pip3 and python3 are correctly installed.

python3 --version
pip3 --version

Step 3: Upgrade your pip to avoid errors during installation.

pip3 install --upgrade pip

Step 4: Enter the following command to install xlrd using pip3.

pip3 install xlrd

Method 2: Using setup.py to install xlrd

Follow the below steps to install the xlrd package on Linux using the setup.py file:

Step 1: Download the latest source package of xlrd for python3 from here.

curl https://files.pythonhosted.org/packages/a6/b3/19a2540d21dea5f908304375bd43f5ed7a4c28a370dc9122c565423e6b44/xlrd-2.0.1.tar.gz > xlrd.tar.gz

Step 2: Extract the downloaded package using the following command.

tar -xvzf xlrd.tar.gz

Step 3: Go inside the folder and Enter the following command to install the package.

cd xlrd-2.0.1
python3 setup.py install

Verifying xlrd installation on Linux:

Make the following import in your python terminal to verify if the installation has been done properly:

import xlrd

If there is any error while importing the module then is not installed properly.


How to Install xlrd in Python on Linux?

In this article, we will learn how to install xlrd in Python on Linux. The xlrd is a library for reading data and formatting information from Excel files in the historical .xls format.

Similar Reads

Installing xlrd in Python on Linux:

Method 1: Using pip to install xlrd Package...