Hi al,
I have installed the package colorama but it seems that the console color characters are not displayed.
Minimal sample:
from colorama import Fore, Back, Style
print(Fore.RED + 'some red text')
print(Back.GREEN + 'and with a green background')
print(Style.DIM + 'and in dim text')
print(Style.RESET_ALL)
print('back to normal now')
Output:
[31msome red text
[42mand with a green background
[2mand in dim text
[0m
back to normal now
Does it alternative?
Best, David