I've search for people getting the same errors has me, but I didn't find any related issues.
I'm using PyCharm 2021.1.3 (latest) on Windows 10 and when I use the init() command with autoreset=True, there is no color at all.
from colorama import Fore, Style, init
init(autoreset=True)
The second issue, I ran into, is that Fore.WHITEactually renders as grey:
The other lines are using regular print()
Here is the code:
print(Fore.WHITE, "AAAAAAAAAAAAAA", Style.RESET_ALL, sep='')
The behavior is the same with and without the init() command.
Hello,
I've search for people getting the same errors has me, but I didn't find any related issues. I'm using PyCharm 2021.1.3 (latest) on Windows 10 and when I use the
init()
command withautoreset=True
, there is no color at all.The second issue, I ran into, is that
Fore.WHITE
actually renders as grey:The other lines are using regular print() Here is the code:
print(Fore.WHITE, "AAAAAAAAAAAAAA", Style.RESET_ALL, sep='')
The behavior is the same with and without the
init()
command.