无法安装prettytable

2 投票
2 回答
25761 浏览
提问于 2025-04-17 22:31

我无法通过“pip install prettytable”来安装这个库。请问有什么更好的安装方法吗?

% sudo pip -vvv install prettytable

Downloading/unpacking prettytable
  Getting page https://pypi.python.org/simple/prettytable/
  Could not fetch URL https://pypi.python.org/simple/prettytable/: 404 Client Error: Not Found
  Will skip URL https://pypi.python.org/simple/prettytable/ when looking for download links for prettytable
  Getting page https://pypi.python.org/simple/
  URLs to search for versions for prettytable:
  * https://pypi.python.org/simple/prettytable/
  Getting page https://pypi.python.org/simple/prettytable/
  Could not fetch URL https://pypi.python.org/simple/prettytable/: 404 Client Error: Not Found
  Will skip URL https://pypi.python.org/simple/prettytable/ when looking for download links for prettytable
  Could not find any downloads that satisfy the requirement prettytable

2 个回答

3
pip install PrettyTable

或者

pip3 install PrettyTable
9

看起来prettytable这个模块在PyPI上找不到。你可以从这个链接下载源代码:https://code.google.com/p/prettytable/downloads/list,然后再安装这个模块。

pip install https://pypi.python.org/packages/source/P/PrettyTable/prettytable-0.7.2.tar.bz2

撰写回答