ChromeDriver 115 버전 이후 드라이버 다운로드 및 AttributeError 오류 해결 방법
·
TIL/오류해결
현재 시점 기준(2023.08) 크롬 드라이버가 116 버전이 되면서 이전의 방법으로는 오류가 해결되지 않는다. 115, 116 버전으로 새로 업데이트됨에 따라 새로운 드라이버를 설치해주어야 하는데 설치 방법은 다음과 같다. 아래 크롬 드라이버 다운로드 사이트에서 각 버전에 맞는 드라이버를 설치하면 된다. ChromeDriver - WebDriver for Chrome - Downloads Current Releases If you are using Chrome version 115 or newer, please consult the Chrome for Testing availability dashboard. This page provides convenient JSON endpoints for spec..
Docker | error during connect: this error may indicate that the docker daemon is not running
·
TIL/오류해결
명령프롬포트에서 docker-compose build 또는 docker-compose up을 입력했을 때 다음과 같은 오류가 발생하였다. error during connect: this error may indicate that the docker daemon is not running 윈도우에서 발생하는 오류로, cmd에서 도커 명령어를 입력하기 전에 Docker Desktop을 실행하지 않으면 발생한다. 따라서, Docker Desktop을 실행시킨 뒤 다시 도커 명령어를 입력하면 정상적으로 진행되는 것을 볼 수 있다.
JVMNotFoundException: No JVM shared library file (jvm.dll) found. Try setting up the JAVA_HOME environment variable properly.
·
TIL/오류해결
한국어 정보처리를 위한 파이썬 패키지 KoNLPy를 사용하는 과정에서 오류가 발생했다. konlpy를 설치는 정상적으로 되었으나, 형태소 분석기를 사용하려 하자 아래와 같은 JVMNotFoundException이 발생하였다. JVMNotFoundException: No JVM shared library file (jvm.dll) found. Try setting up the JAVA_HOME environment variable properly. JAVA_HOME 환경 변수에 jvm.dll이 없어서 발생한 오류임을 알 수 있었다. 나 같은 경우는, 노트북 블루스크린 때문에 눈물과 함께 메인보드를 한 번 교체하면서 모든 데이터가 전부 초기화되면서 JAVA도 삭제되었다. 노트북에 깔린 언어라곤 파이썬만 존재..
ChromeDriver 버전 오류 해결 및 webdriver-manager 사용하기
·
TIL/오류해결
크롬 115 이후 버전은 아래 링크를 참고해주세요. ChromeDriver 115 버전 이후 드라이버 다운로드 및 AttributeError 오류 해결 방법 현재 시점 기준(2023.08) 크롬 드라이버가 116 버전이 되면서 이전의 방법으로는 오류가 해결되지 않는다. 115, 116 버전으로 새로 업데이트됨에 따라 새로운 드라이버를 설치해주어야 하는데 설치 dduniverse.tistory.com 파이썬 Selenium으로 크롤링 시 크롬 드라이버를 실행할 때 다음과 같은 에러는 Chorme 버전과 ChromeDriver 버전이 맞지 않아서 발생하는 것이다. This version of ChromeDriver only supports Chrome version 97 이 글의 작성 시점(2023.05)으..
ImportError: DLL load failed while importing _sqlite3: 지정된 모듈을 찾을 수 없습니다.
·
TIL/오류해결
많은 경고 문구가 떴는데 anaconda3 폴더 안에 DLL 파일에서 sqlite3이 없기 때문에 import 할 수 없어 ImportError: DLL load failed while importing _sqlite3 에러가 발생하였다. sqlite3은 여기에서 설치할 수 있다. SQLite Download Page Templates (1) and (2) are used for source-code products. Template (1) is used for generic source-code products and templates (2) is used for source-code products that are generally only useful on unix-like platforms. Te..
ImportError: cannot import name 'Imputer' from 'sklearn.preprocessing'
·
TIL/오류해결
결측치를 대체하기 위해서 쓰이는 Imputer를 사용하기 위해 아래와 같이 코드를 작성했더니 ImportError가 발생하였다. sklearn.preprocessing에 Imputer가 없어서 에러가 발생하였다. scikit-learn 공식 문서에서 다음과 같은 문장을 볼 수 있었다. New in version 0.20: SimpleImputer replaces the previous sklearn.preprocessing.Imputer estimator which is now removed. : sklearn.preprocessing의 Imputer는 현재는 삭제되어 사용할 수 없으며, SimpleImputer로 대체됨. 따라서 이전 버전의 sklearn에서 사용하던 sklearn.preprocessi..