windows中Python Playsound報錯:驅動程式無法識別指定的命令

ubirdy發表於2024-09-11

playsound 1.3這個版本在windows中有問題,是由於使用了utf-16編碼導致的。

將原始碼中command = ' '.join(command).encode('utf-16')變為command = ' '.join(command)即可

另外一個簡單的解決方法:

解除安裝playsound 1.3, pip uninstall playsound 然後安裝更穩定的playsound版本 pip install playsound==1.2.2 問題解決

相關文章