我不能"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发布于 2014-03-16 19:41:29
看起来这个漂亮的模块在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发布于 2019-06-13 18:49:59
pip install PrettyTable或
pip3 install PrettyTablehttps://stackoverflow.com/questions/22436014
复制相似问题