반응형
하이어시스템 소개
파이썬 playsound 모듈 사용간 발생하는 Exception Error는 대부분 하위 버전과 상위 버전의 사용법 차이에서 발생합니다. 주로 나타나는 Exception Error는 다음과 같습니다.
Error 259 for command:
The driver cannot recognize the specified command parameter.
Error 261 for command:
The driver cannot recognize the specified command.
Error 263 for command:
The specified device is not open or is not recognized by MCI.
지정한 정차기 열려 있지 않거나 MCI에서 인식되지 않습니다.
Error 305 for command:
Cannot specify extra characters after a string enclosed in quotation marks.
위의 에러는 다음과 같이 우회하면 간단하게 해결 됩니다. 다만 상위 버전에서도 변화된 사용법을 이용해서 해결할 수 있다는 점 참고하시기 바랍니다.
해결방법
아래의 명령어를 이용해 하위버전의 playsound모듈을 재설치 합니다.
pip uninstall playsound
pip install playsound==1.2.2
반응형
'파이썬트러블슈팅' 카테고리의 다른 글
PyInstaller로 만든 프로그램이 바이러스로 식별되는 문제 해결 방법 (0) | 2024.03.10 |
---|---|
selenium.common.exceptions.SessionNotCreatedException (0) | 2023.09.25 |
chromedriver_autoinstaller NoSuchDriverException 해결방법 (0) | 2023.08.17 |