如何在Mac上安装xlrd软件包?

时间:2019-07-23 17:03:14

标签: python pip xlrd

我试图在Mac上安装xlrd软件包,以便在Python 3.5.4中使用,以便能够读取excel文档。

我打开了“终端”并输入:

pip install xlrd 

但我不断收到此错误:

Downloading/unpacking xlrd
  Cannot fetch index base URL https://pypi.python.org/simple/
  Could not find any downloads that satisfy the requirement xlrd
Cleaning up...
No distributions at all found for xlrd
Storing debug log for failure in /Users/Elizabeth/.pip/pip.log

1 个答案:

答案 0 :(得分:0)

尝试:

pip install --index-url=https://pypi.python.org/simple/ xlrd

最常见的问题是pip无法通过SSL连接到简单索引。发布您的调试日志以确认这一点。点子可能也已过时,因此请尝试更新它:

sudo pip install --index-url https://pypi.python.org/simple/ --upgrade pip