pip安装termcolor失败解决方法+使用方法

简介: pip安装termcolor失败解决方法+使用方法

pip安装termcolor失败解决方法在本文末尾!!!!


1、termcolor是python中标注文本颜色的库


ANSII Color formatting for output in terminal. 利用termcolor查看log,进行代码调试,清晰标出自己想要查看的部分。


2、使用方法


2.1 帮助文档


// color:字体颜色
// on_color:背景颜色
FUNCTIONS
    colored(text, color=None, on_color=None, attrs=None)
  Colorize text.
  Available text colors:
      red, green, yellow, blue, magenta, cyan, white.
  Available text highlights:
      on_red, on_green, on_yellow, on_blue, on_magenta, on_cyan, on_white.
  Available attributes:
      bold, dark, underline, blink, reverse, concealed.
  Example:
      colored('Hello, World!', 'red', 'on_grey', ['blue', 'blink'])
      colored('Hello, World!', 'green')
    cprint(text, color=None, on_color=None, attrs=None, **kwargs)
  Print colorize text.
  It accepts arguments of print function.
DATA
    ATTRIBUTES = {'blink': 5, 'bold': 1, 'concealed': 8, 'dark': 2, 'rever...
    COLORS = {'blue': 34, 'cyan': 36, 'green': 32, 'grey': 30, 'magenta': ...
    HIGHLIGHTS = {'on_blue': 44, 'on_cyan': 46, 'on_green': 42, 'on_grey':...
    RESET = '\x1b[0m'
    VERSION = (1, 1, 0)
    __ALL__ = ['colored', 'cprint']
    print_function = _Feature((2, 6, 0, 'alpha', 2), (3, 0, 0, 'alpha', 0)...


2.2 样例


import sys
from termcolor import colored, cprint
# 红色背景字符不发光
text = colored('Hello, World!', 'red', attrs=['reverse', 'blink'])
print(text)
# 红色背景上显示绿色字符
cprint('Hello, World!', 'green', 'on_red')
# 青蓝色背景上显示绿色字符
print_red_on_cyan = lambda x: cprint(x, 'red', 'on_cyan')
print_red_on_cyan('Hello, World!')
print_red_on_cyan('Hello, Universe!')
for i in range(10):
    cprint(i, 'magenta', end=' ')
# 红色字符加粗
cprint("Attention!", 'red', attrs=['bold'], file=sys.stderr)


e772f6ab114edef5395aed19c4c42817.png


3、安装失败的解决办法


3.1 遇到问题


20200428123839718.png


3.2 解决方法


termcolor-whl · PyPI


ANSI Color formatting for output in terminal, successor to termcolor (has wheels!)

https://pypi.org/project/termcolor-whl/#files

到上述网站中下载文件:


termcolor‑1.1.0‑py2.py3‑none‑any.whl


下载完成之后,到本地目录下,使用下述命令进行安装即可


pip3 install termcolor-1.1.0-py2.py3-none-any.whl


目录
相关文章
|
2月前
|
Python
pip批量安装Python库 requirement.txt 离线环境无互联网环境下pip安装Python库
pip批量安装Python库 requirement.txt 离线环境无互联网环境下pip安装Python库
143 3
|
2月前
|
自然语言处理 搜索推荐 程序员
【Python】如何使用pip,安装第三方库和生成二维码、操作Excel
【Python】如何使用pip,安装第三方库和生成二维码、操作Excel
53 0
|
3月前
|
机器学习/深度学习 Linux 开发者
Python必备工具:pip的安装与管理
Python必备工具:pip的安装与管理
159 0
|
4月前
pip安装iterstrat.ml_stratifiers import MultilabelStratifiedKFold, MultilabelStratifiedShuffleSplit
文章介绍了如何使用iterative-stratification库进行多标签多分类的K折交叉验证,包括安装方法和示例代码。
62 1
|
5月前
|
Web App开发 测试技术 Shell
确保您已经安装了Selenium和ChromeDriver。您可以使用pip来安装Selenium:
确保您已经安装了Selenium和ChromeDriver。您可以使用pip来安装Selenium:
|
5月前
|
SQL Python
你需要在你的系统上安装`sqlmap`。这通常可以通过下载其源代码并编译,或者使用包管理器(如`apt`、`yum`或`pip`,但请注意,`pip`通常不直接提供`sqlmap`)来完成。
你需要在你的系统上安装`sqlmap`。这通常可以通过下载其源代码并编译,或者使用包管理器(如`apt`、`yum`或`pip`,但请注意,`pip`通常不直接提供`sqlmap`)来完成。
|
5月前
|
开发框架 机器人 .NET
我们需要安装`pybullet`模块,这可以通过pip来完成:
我们需要安装`pybullet`模块,这可以通过pip来完成:
|
4月前
|
存储 Linux 网络安全
常用的 Python 工具:使用 virtualenv、使用 Pip 进行安装和管理包
常用的 Python 工具:使用 virtualenv、使用 Pip 进行安装和管理包
39 0
|
4月前
|
Python
Python——pip安装weditor失败
Python——pip安装weditor失败
55 0
|
5月前
|
Python
确保你已经安装了`dronekit`库。如果没有,你可以使用pip来安装:
确保你已经安装了`dronekit`库。如果没有,你可以使用pip来安装:

热门文章

最新文章