LearnRun

Pyqt5 실행 관련한 문제. 본문

메모장

Pyqt5 실행 관련한 문제.

PROMPT_ 2019. 4. 8. 06:40

anaconda 환경에서,

PyQT 프론트 작업을 위해 필요한 designer.exe의 실행에서 에러가 발생할 때의 해결법.

 

오류 메시지
This application failed to start because it could not find or load the Qt platform plugin "windows" in "".
Reinstalling the application may fix this problem.

 

qwindows.dll 파일을 designer.exe가 존재하는 경로에 함께 복사해두면 해결됩니다.

 

제 환경에서의 예시로,

C:\ProgramData\Anaconda3\pkgs\qt-5.9.7-vc14h73c81de_0\Library\plugins\platforms\qwindows.dll

에 있었으며, 해당 dll 파일을

C:\ProgramData\Anaconda3\pkgs\qt-5.9.7-vc14h73c81de_0\Library\bin\designer.exe

의 designer.exe가 설치되어 있는 폴더에 복사하였고, 정상적으로 실행됨을 확인하였습니다.

‌ ‌ ‌
Comments