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.
问题:
回答1:
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)
回答2:
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.
回答3:
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
You can check out the following post if you want to see how to install the xlrd module: The xlrd python module for reading excel spreadsheets - installation.
I am assuming that this will help you. If not please don't hesitate to contact me and I will help you for sure.
回答4:
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