Open In App

How to Install xlrd in Python on Linux?

Improve
Improve
Like Article
Like
Save
Share
Report

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.

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 1: Install the latest Python3 in Linux

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

python3 --version
pip3 --version

checking python and pip version in Linux

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

pip3 install --upgrade pip

upgrading pip in Linux

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

pip3 install xlrd

installing xlrd package on Linux using pip

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

downloading the source package for xlrd in Linux

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

tar -xvzf xlrd.tar.gz

extracting the xlrd.tar.gz file in Linux

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

cd xlrd-2.0.1
python3 setup.py install

installing xlrd on Linux using the setup.py file

Verifying xlrd installation on Linux:

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

import xlrd

Verifying xlrd installation on Linux

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


Last Updated : 18 Oct, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads