FLAC conversion utility not available - consider installing the FLAC command line application
问题 I am making a simple speech_recognition program in python3.6.3 here is the python code: import speech_recognition as sr import os r = sr.Recognizer() r.energy_threshold = 10000 with sr.Microphone() as source: print('Say something') audio = r.listen(source) print("Done") try: text = r.recognize_google(audio) print(text) os.system("say '"+'I think you said,'+text+'!'+"'") except Exception as e: print(e) When I run it I get this error: OSError:FLAC conversion utility not available - consider