본문 바로가기

에러7

Flutter - Unhandled Exception: PlatformException(sign_in_failed, com.google.android.gms.common.api.ApiException: 10: , null, null) 오류 발생 시 오류메시지 Unhandled Exception: PlatformException(sign_in_failed, com.google.android.gms.common.api.ApiException: 10: , null, null) Flutter 구글 로그인 구현 중 위와 같은 오류가 발생했다. 셋업한 환경은 다음과 같았다. 셋업 환경 1.GCP 사용 ( Not Firebase ) 2.OAuth 동의 3.사용자 인증 정보 등록 SHA-1 인증서 디지털 지문 등록 필자는 keytool을 사용할 때 jks 파일을 생성하지 않았다. 다음과 같이 입력 keytool -keystore ~/.android/debug.keystore -list -v -alias androiddebugkey -storepass androi.. 2023. 9. 15.
Python - pip install shap 오류 발생 시. MacBook환경에 shap 패키지 설치 중 의존성 오류 발생 시 해결방법. shap 패키지 설치 python -m pip install shap 다음의 오류 발생 ERROR: Failed building wheel for numba Running setup.py clean for numba Building wheel for llvmlite (setup.py) ... error ERROR: Command errored out with exit status 1: ... 중략 ... ERROR: Failed building wheel for llvmlite Running setup.py clean for llvmlite Successfully built shap Failed to build numba llv.. 2022. 9. 30.
eslint 커맨드를 찾지 못하는 경우 ( esline --init 오류 ) npm install -g eslint 위 처럼 eslint를 정상적으로 설치하고 eslint --init 위 코드 실행 시 eslint 커맨드를 찾지 못하여 오류가 발생하는 경우, node_modules가 전역설치 되는 폴더에 환경변수 등록이 안되어 있어 실행이 안될 가능성이 높다. 보통이런 경우는 Windows 사용자명이 띄어쓰기가 있는경우 발생한다. 해결방법 1. npm 모듈이 설치된 위치 (ex: c:\npm )로 이동하여 eslint 실행파일이 정상적으로 위치해있는지 확인 2. 환경변수에 해당 path를 등록 3. 실행 중인 에디터 툴(ex: VSCode)를 재기동 하고 eslint --init 실행. 2021. 8. 14.
Python - Konlpy 설치 오류 시 해결방법 공유 ( ImportError: DLL load failed while importing _jpype, ERROR: Could not install packages due to an OSError:) Konlpy 설치 중 아래 오류 발생, 처리했던 내용을 공유하고자 한다. 실행환경은 - Python 3.9.2 64bit - Jupyter Lab - Window10 64bit jpype pip 설치 오류 시 아래 오류 발생 시 해결방법 ERROR: Could not install packages due to an OSError: [WinError 32] 다른 프로세스가 파일을 사용 중이기 때문에 프로세스가 액세스 할 수 없습니다: 1. 커맨드 창 관리자 실행 후 pip install 2. 쥬피터 노트북이 실행되어 Python자원을 사용중이라면 종료 후 재 설치 import jpype 오류 시 ImportError: DLL load failed while importing _jpype: DLL 초기화 루.. 2021. 4. 20.