Error현상AttributeError Traceback (most recent call last)Cell In[15], line 2 1 import random----> 2 import pandas as pd 3 import numpy as np 4 import osFile d:\CHOI\workspace\small-project\venv\lib\site-packages\pandas\__init__.py:138 120 from pandas.core.reshape.api import ( 121 concat, 122 lreshape, (...) 134 qcut, 135 ) 1..
반응형
분류 전체보기
Error현상EPERM: operation not permitted, rename 'D:\{your path}\workspace\{your project}\node_modules\next' -> 'D:\{your path}\workspace\{your project}\node_modules\.ignored\next' Solution1. npm 캐시 제거npm cache clean --force 2. npm 업데이트npm install -g npm@latest --force 3. npm 캐시 제거npm cache clean --force 다시 하면 정상 동작함. 끝. Thank you!
ErrorHttp Post Method를 통해 Body에 큰 크기의 데이터를 실어 보낼 경우 아래와 같은 에러가 발생함.{ "type":"about:blank", "title":"Bad Request", "status":400,"detail":"Failed to read HTTP message", "instance":"/your/path"} Solution나의 경우 AbstractMessageReaderArgumentResolver에서 해당 메시지를 볼 수 있었고, 디버깅하여 에러를 찍어보니 다음과 같았음. org.springframework.core.codec.DecodingException: JSON decoding error: String length (20051112) ..
ErrorVercel을 이용해서 NestJS 소스 배포 시, 아래와 같은 에러가 발생함.ERR_PNPM_OUTDATED_LOCKFILE Cannot install with "frozen-lockfile" because pnpm-lock.yaml is not up to date with package.jsonNote that in CI environments this setting is true by default. If you still need to run install in such cases, use "pnpm install --no-frozen-lockfile" Failure reason: specifiers in the lockfile ({"@tailwindcss/postcss":"..
ErrorNextJS에서 아래와 같이 handleInputChange 이벤트에서 setInputValue로 값을 바꿔고 바로 안 바뀌고 이전 값이 출력되는 현상 발생.export default function Page() { const [inputValue, setInputValue] = useState(0); const handleInputChange = (e: React.ChangeEvent) => { setInputValue(Number(e.target.value)); console.log(inputValue); // 이전 값 출력 }; ... } Solution이건 React의 상태 업데이트 시 동기(Syncro..
서비스 운영 중 DB 데이터 중 제공되는 값들에 특수문자가 있는지, 어떤 것들이 있는지 조사가 필요하였다. DB 테이블 전부를 수작업으로 찾기 힘들어서 아래와 같은 쿼리를 만들어 특수문자를 파악함. select STRING_AGG(str, ', ')from ( select distinct regexp_split_to_table(REGEXP_REPLACE([your_colume_name], '[가-힣a-zA-Z0-9[:space:]]', '', 'g'), '') str from [your_table_name] where [your_colume_name] ~ '[^가-핳a-zA-Z0-9[:space:]]') A; 아래처럼 콤마로 구분해서 조회 가능. 끝. Thank you!
Error대용량 파일 git push 시 아래와 같은 에러 발생git -c diff.mnemonicprefix=false -c core.quotepath=false --no-optional-locks push -v --tags origin main:mainPOST git-receive-pack (chunked)remote: error: Trace: aeceddb3b4c7c5142e1618a5f8b26bfa13a3980ad802b5ffa38c6dc7995b1df5 remote: error: See https://gh.io/lfs for more information. remote: error: File yolov9/runs/train/exp10/weights/last.pt is 1..
ErrorPostgresl 테이블 조회시 아래와 같은 에러가 발생함. Queryselect * from planet_osm_ways where nodes = '27440004';SQL Error [42883]: ERROR: operator does not exist: bigint[] = integer Hint: No operator matches the given name and argument types. You might need to add explicit type casts. Position: 50 Solution아래와 같이 테이블의 'nodes' 컬럼이 _int8 배열 타입이라 발생함. 아래와 같이 조회하면 됨.select * from planet_osm_ways where nodes[1]..
반응형