Can someone give me a guide for morons? I am somewhat out of my depth here. So far I have downloaded xlrd 0.9.2 and tried to follow the readme, but neither I nor ctrl-f can find the installer mentioned.
-
1what os? what python? what did you try when you failed to install it? and no one has any idea what installer you are referring to at the end there – Joran Beasley Dec 09 '13 at 01:55
-
on windows 7, python 2.7.2, I would go to setup, and a python window would open and close itself. The installer is referred to in the readme, but I can't find it anywhere. Sorry about the poor question, I'm rather new to this – user3081261 Dec 09 '13 at 02:06
-
https://pypi.python.org/packages/any/x/xlrd/xlrd-0.7.1.win32.exe#md5=801174b0a9dc60886fa3e74925b2a50d – Joran Beasley Dec 09 '13 at 02:08
-
It can't find the installation in the registry. I think it's because I'm running 64 bit, but I'm not sure. Like I said, I'm really new to this – user3081261 Dec 09 '13 at 02:11
-
yeah I dunno I run 32bit python even though im on a x64 ... thats a 32bit version so probably incompatible... you could install 32b python – Joran Beasley Dec 09 '13 at 02:14
4 Answers
download
The current version of xlrd can be found here: https://pypi.python.org/pypi/xlrd
extract the folder somewhere
go to the folder you extracted to ... find setup.py
open command window (start -> run-> cmd)
cd into the directory with setup.py
type: python setup.py install
you may need setup tools (which can be gotten here https://pypi.python.org/pypi/setuptools#installation-instructions)

- 1,628
- 2
- 26
- 42

- 110,522
- 12
- 160
- 179
-
and if in macOs and getting permission error use "sudo python setup.py install" – Eklavyaa Jun 04 '18 at 13:32
If windows this should work. Browser to "folder with python"\scripts Open cmd here (shift + right click and and it should be an option in the context menu.)
type inn: easy_install.exe xlrd
It should download and install if for you.

- 13,186
- 4
- 35
- 42
I don't think that it is really necessary for you to download the file from pypi because you have the following easy option:
$ pip install xlrd
As simple as that! You can install it using pip, easy_install, virtualenv or even install the module manually.
The method of downloading the file(s) and installing is called manual installation.
You can do that after you have unzipped the folder and then cd to the folder and do the following:
$ python setup.py install

- 1,048,767
- 296
- 4,058
- 3,343

- 619
- 5
- 19
If you have installed pip which is available with python installation file; then just do the following steps:
- Open Command Line
- Type "pip install xlrd"
Hope it will work

- 3,887
- 1
- 33
- 35