I am new to python and jupyter-notebook. I am trying to print something with colors and I was thinking of using the colored
package.
I am working on Ubuntu 18.04 and the jupyter-notebook is open in google chrome.
I am trying this by doing:
from termcolor import colored
print(colored('hello', 'red'))
print(colored("hello red world", 'red'))
I tried to restart the kernel, I tried to restart the whole jupyter-notebook, and I also tried
Could you help me in understanding why it does not work?