#1프로그래밍/#1-2파이썬 문제해결 7

[Python-에러해결] MModuleNotFoundError: No module named 'PyQt5'

1. 에러 메세지 확인 - 원인 : PyQt5 module 설치 되지 않음 - 해결 방법 : PyQt5 설치 2. 해결 방법 - 파일 > 설정 > Python 인터프리터 선택 - 현재 설정된 인터프리터 선택 - [+] 버튼 눌러서 PyQt5 패키지 설치 - pyqt5 검색하여 설 - 패키지 설치 버튼을 누르면 설치고 완료되었다는 메세지 확인 ※ 진짜 해결 방법 - pip install --upgrade pip - 그리고 pyqt5 삭제 - pip install pyqt5 - pip install pyqt5-tools 이렇게 하면 해결된다.

[python, selenium] session not created: This version of ChromeDriver only supports Chrome version 106 에러 해결

1. 에러 발생 코드 self.browser = webdriver.Chrome() 2. 원인 Current browser version is 108.0.5359.125 with binary path C:\Program Files\Google\Chrome\Application\chrome.exe -> chromedriver.exe 버전이 내 컴퓨터의 크롬 버전과 다르다. 3. 해결 방법 1) 크롬 드라이버 다운로드 : https://chromedriver.chromium.org/downloads ChromeDriver - WebDriver for Chrome - Downloads Current Releases If you are using Chrome version 109, please download C..

[파이썬, QT, 에러] QT designer.exe 실행시 에러 "This application failed to start because it could not find or load the Qt platform plugin "windows"

1. 문제점 - QT를 Desinger 를 실행시 에러가 발생 - designer.exe 실행 경로 --> "anaconda3\pkgs\qt-5.9.7-vc14h73c81de_0\Library\bin" - 에러 Message "this application failed to start because no qt platform plugin windows" 2. 해결 방법 - designer.exe 실행파일 경로에 "platforms" 폴더 생성 - 생성한 "platforms" 폴더에 "qwindows.dll" 복사 (qwindows.dll 파일 경로 \anaconda3\pkgs\qt-5.9.7-vc14h73c81de_0\Library\plugins\platforms) --> \anaconda3\pkgs\q..