无法安装prettytab

2024-04-29 12:10:16 发布

您现在位置:Python中文网/ 问答频道 /正文

我无法“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

Tags: installpiphttpsorgpypiclienturlfor
2条回答
pip install PrettyTable

或者

pip3 install PrettyTable

看起来那个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

相关问题 更多 >