I am currently making a very long Python program (sorry I cannot post it here since it is 400 lines long) and I wanted to print colored Text. I know this question has already been asked but they only worked with Linux (for me...). I use the termcolor
module. Here is a part of the program :
if user_id_signin == user_id :
print('Welcome', colored(name_signin, 'red'))
When I run this code on Windows I get this output :
But when I run my code on my Raspberry Pi I get this output :
I have checked Pip and all required modules are installed on my Windows PC... I have also tried other methods (with colorama module) and I get the same thing
Why is this not working only on Windows ?
Thanks for helping me (and sorry for my English)
Clement