That's a trunk load of logs, for you perhaps an overloaded boot problem ?
python -m would be preferred over an OS install. The 'python environment ' is really quite sophisticated and flexible. but ultimatly I would hope that your installed gtts-cli in your environment said
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from gtts.cli import tts_cli
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(tts_cli())
That way --lang and --tld will be operative using python3 on almost any OS.
python -m would be preferred over an OS install. The 'python environment ' is really quite sophisticated and flexible. but ultimatly I would hope that your installed gtts-cli in your environment said
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import re
import sys
from gtts.cli import tts_cli
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
sys.exit(tts_cli())
That way --lang and --tld will be operative using python3 on almost any OS.
Last edited: