UnicodeEncodeError: 'ascii' codec can't encode character '\U0001f916' in position 22: ordinal not in range(128)

Can you try setting this environment variable in your shell before rerunning the command: PYTHONIOENCODING='utf8'

If this doesn’t work, you’ll have to set it on each command:

PYTHONIOENCODING='utf8' rasa init
5 Likes