Python/Python

pyinstaller Cannot find existing PyQt5 plugin directories 오류

나쁜천사1004 2019. 5. 5. 10:45

window10 환경에서 python exe 파일 만들어 주는 pyinstaller 설치시 

'Cannot find existing PyQt5 plugin directories 오류' 가 발생 하였다.

PyQt5를 설치를 해도 똑 같이 오류가 발생..

아래와 같이 해결 하면 된다.

 

pip uninstall pyinstaller

 

pip install https://github.com/pyinstaller/pyinstaller/archive/develop.zip

 

pyinstaller xxx.py 

실행하면 잘 된다.

 

반응형