Closed CheerL closed 7 years ago
https://github.com/DelightRun/PyBaiduYuyin/blob/master/PyBaiduYuyin/init.py#L492 i've found that, in PyBaiduYuyin.init.py line492
while True: print("Say something!") with m as source: audio = r.listen(source) print("Got it! Now to recognize it...") try: text = r.recognize(audio) print 'You said ' + text except LookupError: print("Oops! Didn't catch that")
this print is differnt from others, which is py2 style.
thanks,CheerL .I changed the print to print();and then it works.
pip install failed, can it work in #py3.5?