无法安装 xlrd 1.0.0 wheel

Unable to install xlrd 1.0.0 wheel

我正在尝试在安装了 Python v2.7.12 的 Windows 7(64 位)计算机上安装 wheel xlrd-1.0.0-py3-none-any.whl

我收到以下错误消息:

xlrd-1.0.0-py3-none-any.whl is not a supported wheel for this platform.

我从 https://pypi.python.org/pypi/xlrd 下载了轮子,它说轮子适用于 python 2.7+
我在CMD.EXE中输入的命令是:

python -m pip install  xlrd-1.0.0-py3-none-any.whl

我错过了什么??

查看错误信息:

xlrd-1.0.0-py3-none-any.whl is not a supported wheel for this platform.

我可能错了,但是 py3 是 Python 3。所以不是 Python 2.7。 对于 Python 2.7+,它们可能意味着 2.7.xx+,所以仍然是 Python 3.

尝试从这里安装它: https://pypi.python.org/pypi/xlutils#downloads py2.py3版本支持Python2和Python3.

或者,也许 pip 也能正常工作:

pip install xlutils
pip install xlrd