본문 바로가기

오류30

문제 해결: Error: Error loading shared library /app/node_modules/bcrypt/lib/binding/napi-v3/bcrypt_lib.node: Exec format error React Application을 Docker 기반으로 변경하는 중 아래와 같은 오류 발생 Error: Error loading shared library /app/node_modules/bcrypt/lib/binding/napi-v3/bcrypt_lib.node: Exec format error docker-compose.yaml의 volumes를 설정하여 로컬의 node_module이 Docker container에 엎어써지면서 문제가 발생한 것으로 판단. ( 위 모듈은 OS 별 실행되는 함수에 차이가 있는 듯 합니다. ) 해결방법 .dockerignore 파일 추가 mode_module 디렉토리 추가 .dockerignore api1/node_modules api2/node_modules - api.. 2023. 2. 3.
Java - 문제 해결: UnrecognizedPropertyException: Unrecognized field jackson에서 제공하는 Object Mapper를 사용하여, Json데이터를 DTO객체로 변환할 때 아래와 같은 오류 발생. com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "8. Bid Price" ... 중략 ... 문제점은 Json 데이터의 Key가 변환하고자 하는 DTO객체에 없는 경우 발생합니다. Json Data { "1. From_Currency Code" : "USD", "2. From_Currency Name" : "United States Dollar", "3. To_Currency Code" : "KRW", "4. To_Currency Name" : "South Korean Wo.. 2022. 11. 24.
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.
Go - 문제해결: Error loading workspace: gopls was not able to find modules in your workspace. VSCode에서 go 파일을 열면 다음과 같은 오류와 함께 package main 에 빨간 줄이 생겼다. (해당 오류가 발생해도 go run 은 문제없이 동작한다.) VSCode 하단에 다음과 같은 알림을 확인하였다. Error loading workspace: gopls was not able to find modules in your workspace. When outside of GOPATH, gopls needs to know which modules you are working on. You can fix this by opening your workspace to a folder inside a Go module, or by using a go.work file to specify multip.. 2022. 9. 27.