You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i have been using you Cozmo Voice Commands and I had problems with the collored text when i start the cvc.py under the windows shell. I found out that there is something missing (at least at my PC). I inserted the following two lines to the file "cozmo_voice_commands.py"
import colorama colorama.init()
right after
#!/usr/bin/env python3 ''' Cozmo Voice Commands (CvC) Author: Riccardo Sallusti - http://riccardosallusti.it Description: Issue complex voice commands to Cozmo, and watch him execute them. More informations: https://github.com/rizal72/Cozmo-Voice-Commands License: GNU ''' import sys import os import asyncio import operator import glob import json
and now it is working. Everything is colored now.
The text was updated successfully, but these errors were encountered:
Hello,
i have been using you Cozmo Voice Commands and I had problems with the collored text when i start the cvc.py under the windows shell. I found out that there is something missing (at least at my PC). I inserted the following two lines to the file "cozmo_voice_commands.py"
import colorama colorama.init()
right after
#!/usr/bin/env python3
'''
Cozmo Voice Commands (CvC)
Author: Riccardo Sallusti - http://riccardosallusti.it
Description: Issue complex voice commands to Cozmo, and watch him execute them.
More informations: https://github.com/rizal72/Cozmo-Voice-Commands
License: GNU
'''
import sys
import os
import asyncio
import operator
import glob
import json
and now it is working. Everything is colored now.
The text was updated successfully, but these errors were encountered: