我想使用 colorama,但我已经在我的代码中使用了 tqdm。
例子:
import colorama as color
import tqdm as tqdm # without line it's working
print(color.Fore.GREEN + 'Green text')
没有 tqdm 也可以正常工作,但是如果我导入 tqdm,colorama 不会为文本着色,直到我重新启动控制台。我将 IPython 控制台与 Spyder(Python 3.6)一起使用。
有没有办法可以一起使用这些包?