Python Not Showing Colors in Windows 10
Hi All,
So today i was testing one exploit but on windows it was not showing the colors which was very annoying, i tried to install colorama, termcolor. however nothing worked, the exploit was still showing ASCI instead of colors. as shown below
After alot of search i was able to fix it, it requires alittle modification of the exploit.
1st make sure to install colorama, termcolor.
For Python 2.7 x
pip install colorama
pip install termcolor
For Python 3x
pip3 install colorama
pip3 install termcolor
Next open the file in notepad or any other editor and add below lines at the start of script;
import os
os.system("")
Save the script and re-run it, it will give start showing the color codings
Thanks
Comments
Post a Comment