When I install tdqm It also comes with colorama and It makes all the tqdm progress bars red? How can I change that?
How can I change that?
According to tqdm PyPI page it does accept colour
as argument, simple example
from tqdm import tqdm
for i in tqdm(range(100),colour="white"):
pass