I just installed termcolor for Python 2.7 on Windows. When I try to print colored text, I get the color codes instead.
from termcolor import colored
print co
Did work :
inserting previous to importing termcolor:
import subprocess
subprocess.call('', shell=True)
Didn't work:
Can't explain why it works, only that I was able to compare one script that colors worked correctly, and one that didn't work correctly.