- คือจะแปลง voice เป็น text โดยใช้ python
- เค้าใช้ library 2 ตัวหลักๆ คือ
pip3 install SpeechRecognition
pip3 install pyaudio
- แต่คำสั่งติดตั้ง pyaudio มีปัญหาหว่า ทำไงดีติดตั้งไม่ได้ บน Windows 10
Here is my computer configuration - Windows 10 - Python 3.8.0 installed on C:\Program Files (x86)\Python\Python38-32
I've got the same issue and i solved it with these steps ;
1/ download https://www.lfd.uci.edu/~gohlke/pythonlibs/#pyaudio/PyAudio‑0.2.11‑cp38‑cp38‑win32.whl on my computer in C:\Downloads\PyAudio-0.2.11-cp38-cp38-win32.whl2/ run C:\Program Files (x86)\Python\Python38-32\Scripts>pip3.8 install C:\Downloads\PyAudio-0.2.11-cp38-cp38-win32.whl --user
- ดังตัวอย่างการแก้ปัญหา มาประยุกต์กับเราได้ประมาณนี้คือ
- ไปดาวน์โหลดไฟล์มาก่อนแล้วค่อยติดตั้งจากเครื่องพาธบนเครื่องเรา
https://www.lfd.uci.edu/~gohlke/pythonlibs/#pyaudio
- ในที่นี้ผู้เขียนโหลดตัวนี้คับ
PyAudio‑0.2.11‑cp38‑cp38‑win_amd64.whl
- จากนั้นเปิด cmd ในสิทธิ์ admin แล้วรันคำสั่ง
pip install PyAudio‑0.2.11‑cp38‑cp38‑win_amd64.whlRef:
No comments:
Post a Comment