티스토리 뷰
Python/문제 해결
[PyQt5] This application failed to start because it could not find or load the Qt platform plugin ...
DWGoon 2015. 11. 23. 19:59PyQt5 프로그램을 실행할 때, 아래와 같은 에러가 발생할 수 있다.
OS X의 경우:
This application failed to start because it could not find or load the Qt platform plugin "cocoa".
Windows의 경우:
This application failed to start because it could not find or load the Qt platform plugin "windows".
이러한 문제를 해결하는 임시방편 중 하나는, 자신의 시스템에 따라 적절한 plugin 디렉토리를 직접 명시적으로 지정해 주는 것이다.
나의 경우 OS X에서 "brew install"로 Qt5를 설치했기 때문에 아래와 같이 디렉토리를 지정하였다.
libpaths = QtWidgets.QApplication.libraryPaths()
libpaths.append("/usr/local/Cellar/qt5/5.5.1_2/plugins")
QtWidgets.QApplication.setLibraryPaths(libpaths)
Windows에서는 anaconda Python 3.4버전의 가상환경 하에 설치한 PyQt의 plugin 디렉토리를 지정해주었다
(py34는 내가 지정한 가상환경 이름이다).
libpaths = QtWidgets.QApplication.libraryPaths()
libpaths.append("C:/Users/dwlee/Anaconda/envs/py34/Lib/site-packages/PyQt5/plugins")
QtWidgets.QApplication.setLibraryPaths(libpaths)
운영체제에 따라 적절하게 실행되길 원한다면 아래와 같이 지정해 줄 수 있다.
if __name__ == '__main__':
libpaths = QtWidgets.QApplication.libraryPaths()
if sys.platform == 'darwin':
libpaths.append("/usr/local/Cellar/qt5/5.5.1_2/plugins")
QtWidgets.QApplication.setLibraryPaths(libpaths)
elif sys.platform == 'win32':
libpaths.append("C:/Users/dwlee/Anaconda/envs/py34/Lib/site-packages/PyQt5/plugins")
QtWidgets.QApplication.setLibraryPaths(libpaths)
app = QtWidgets.QApplication(sys.argv)
mw = MainWindow()
mw.show()
sys.exit(app.exec())
참고:
'Python > 문제 해결' 카테고리의 다른 글
[TensorFlow] TensorBoard 빌드하기 (4) | 2016.04.18 |
---|---|
외부 (external or third party) 동적 라이브러리 사용 (0) | 2015.03.25 |
numpy와 scipy 설치 (0) | 2014.02.04 |
윈도우(Windows)에서 PyQt 빌드할 때, QtCore4.dll 프로시져 시작지점 에러 해결 (0) | 2010.01.19 |
SWIG로 작성한 C/C++ 확장모듈을 Distutils로 배포 시, setup.py 예시 (0) | 2009.10.18 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- PyQt
- ctypes
- Python
- cython
- destructor
- QPrinter.A4
- GSX 1200 pro
- matrix multiplication
- armadillo c++
- QT
- Accelerated C++
- TensorBoard
- QPrinter.Letter
- GSX 1000 pro
- 이상한 문자
- volume dial
- tensorflow
- Item 9
- TCGA
- pandas
- 볼륨 조절
- 볼륨 낮춤
- C++
- dll
- CanDrA
- 설치
- Visual C++
- how to solve it
- structure
- MSVC++
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
글 보관함