Coding With Fun
Home Docker Django Node.js Articles Python pip guide FAQ Policy
 

How to install xlrd via python pip




xlrd - Library for developers to extract data from Microsoft Excel (tm) .xls spreadsheet files, it belongs to Classifiers:

- Topic :: Database
- Topic :: Office/Business

When you know about this project and you want to new install xlrd to support your project or you get trouble as ModuleNotFoundError: No module named "xlrd" or ImportError: cannot import name "xlrd" in your project, let follow this tutorial to install xlrd



Installation:

Step 1: First, ensure you installed pip in your os, to check pip has been installed on your computer

In Windows (CMD):

py -m pip --version

In Unix/macOS:

python3 -m pip --version

Ensure pip, setuptools, and wheel are up to date:

In Windows (CMD):

py -m pip install --upgrade pip setuptools wheel

In Unix/macOS:

python3 -m pip install --upgrade pip setuptools wheel


Optional - If you want to install in virtual environment:

In Windows (CMD):

- Install virtualenv - if you installed it, please ignore

py -m pip install --user virtualenv

- Create a virtual environment

py -m venv test_xlrd_env

- Active the virtual environment

test_xlrd_env\Scripts\active

In Unix/macOS:

- Install virtualenv - if you installed it, please ignore

pip3 install virtualenv

- Create a virtual environment

python3 -m venv test_xlrd_env

- Active the virtual environment

source test_xlrd_env/bin/active


Step 2: OK, now, let flow below content to start the installation xlrd

To install xlrd on Windows(CMD):

py -m pip install xlrd

To install xlrd on Unix/macOs:

pip install xlrd


Step 3: If you want to install a specific xlrd version, add ==<xlrd version> to the end command line

Example:

pip install xlrd==0.5.2


Please see the version list below table:

VersionReleased dateCommand
xlrd 2.0.12020-12-11T10:14:20Windows:

py -m pip install xlrd==2.0.1

Unix/macOs:

pip install xlrd==2.0.1

xlrd 2.0.02020-12-11T10:02:51Windows:

py -m pip install xlrd==2.0.0

Unix/macOs:

pip install xlrd==2.0.0

xlrd 1.2.02018-12-15T17:47:45Windows:

py -m pip install xlrd==1.2.0

Unix/macOs:

pip install xlrd==1.2.0

xlrd 1.1.02017-08-22T06:14:55Windows:

py -m pip install xlrd==1.1.0

Unix/macOs:

pip install xlrd==1.1.0

xlrd 1.0.02016-06-03T01:46:37Windows:

py -m pip install xlrd==1.0.0

Unix/macOs:

pip install xlrd==1.0.0

xlrd 0.9.42015-07-15T06:21:24Windows:

py -m pip install xlrd==0.9.4

Unix/macOs:

pip install xlrd==0.9.4

xlrd 0.9.32014-04-09T07:24:26Windows:

py -m pip install xlrd==0.9.3

Unix/macOs:

pip install xlrd==0.9.3

xlrd 0.9.22013-04-09T19:36:11Windows:

py -m pip install xlrd==0.9.2

Unix/macOs:

pip install xlrd==0.9.2

xlrd 0.9.12013-04-05T22:08:17Windows:

py -m pip install xlrd==0.9.1

Unix/macOs:

pip install xlrd==0.9.1

xlrd 0.9.02013-01-31T21:54:43Windows:

py -m pip install xlrd==0.9.0

Unix/macOs:

pip install xlrd==0.9.0

xlrd 0.8.02012-08-01T09:52:43Windows:

py -m pip install xlrd==0.8.0

Unix/macOs:

pip install xlrd==0.8.0

xlrd 0.7.92012-06-20T22:10:47Windows:

py -m pip install xlrd==0.7.9

Unix/macOs:

pip install xlrd==0.7.9

xlrd 0.7.82012-06-07T15:30:59Windows:

py -m pip install xlrd==0.7.8

Unix/macOs:

pip install xlrd==0.7.8

xlrd 0.7.72012-04-13T13:28:54Windows:

py -m pip install xlrd==0.7.7

Unix/macOs:

pip install xlrd==0.7.7

xlrd 0.7.62012-04-04T07:21:46Windows:

py -m pip install xlrd==0.7.6

Unix/macOs:

pip install xlrd==0.7.6

xlrd 0.7.52012-04-03T07:32:58Windows:

py -m pip install xlrd==0.7.5

Unix/macOs:

pip install xlrd==0.7.5

xlrd 0.7.42012-04-03T07:04:05Windows:

py -m pip install xlrd==0.7.4

Unix/macOs:

pip install xlrd==0.7.4

xlrd 0.7.32012-02-28T14:40:25Windows:

py -m pip install xlrd==0.7.3

Unix/macOs:

pip install xlrd==0.7.3

xlrd 0.7.22012-02-21T09:17:04Windows:

py -m pip install xlrd==0.7.2

Unix/macOs:

pip install xlrd==0.7.2

xlrd 0.7.12009-06-01T12:40:06Windows:

py -m pip install xlrd==0.7.1

Unix/macOs:

pip install xlrd==0.7.1

xlrd 0.7.02009-03-11T12:03:32Windows:

py -m pip install xlrd==0.7.0

Unix/macOs:

pip install xlrd==0.7.0

xlrd 0.6.12007-06-11T12:14:04Windows:

py -m pip install xlrd==0.6.1

Unix/macOs:

pip install xlrd==0.6.1

xlrd 0.5.22006-03-17T07:55:45Windows:

py -m pip install xlrd==0.5.2

Unix/macOs:

pip install xlrd==0.5.2


Step 4: Otherwise, you can install xlrd from local archives:

Download the distribution file from xlrd-2.0.1.tar.gz or the specific xlrd version in the below list of distribution

After that, install by command:

On Windows(CMD):

py -m pip install <path_to_xlrd_downloaded_file>

On Unix/macOs:

pip install <path_to_xlrd_downloaded_file>


List distribution:


Project link:

- Homepage