No module named 'termcolor' | 易学教程 - E-learn.CN
https://www.e-learn.cn/topic/308022603.01.2020 · Not sure why I can't import this module? Here's the code. from termcolor import colored 回答1: My guess is that you probably have two versions of Python or downloaded the wrong module. 1)Wrong Module: pip install term color It will install a different module. To fix it, install the correct module: pip install termcolor 2)Two-Versions