에러
[ NodeJS ] TypeError [ERR_UNKNOWN_FILE_EXTENSION]: Unknown file extension ".json" 에러
해결방법 해결방법은 정말 간단하다. node --experimental-json-modules app.js 만 붙여주고 실행하면 된다.
[ docker ] one of the sub-processes failed: com.docker.driver.amd64-linux -addr fd:3 -debug 에러
오랜만에 맥북에서 도커를 실행시켰는데 앞선 에러가 뜨며 도커가 산산조각 나버렸다(..) 리셋도 해보고 brew로 덮어 씌우라고 해서 이것저것 다 해보았지만 여전히 실행되지 않았다. 1. 최후의 수단 (재설치) 사실 도커에 중요 데이터가 없고 다 날라가도 복구 가능하다는 전재 하에 가장 좋은 방법은 재설치이다. https://docs.docker.com/desktop/mac/release-notes/ Docker Desktop for Mac release notes docs.docker.com 칩 종류에 맞는 설치 파일을 내려받은 후 실행시켜준다. (간단)
[ 주피터노트북 ] ERROR: the notebook server could not be started because no available port could be found 해결
주피터 노트북이 또 말썽이다. 포트 권한 문제로 다른 포트를 할당해주면 된다. jupyter-notebook --ip=localhost --port=10023 로 해결하면 된다.
[ Nodejs ] Cannot destructure property 'name' of 'node' as it is null 에러
I. 문제 npm ERR! code ERESOLVE npm ERR! Cannot destructure property 'name' of 'node' as it is null. npm install 명령어를 입력하니 위와같은 에러가 나오게 됩니다. 구글에 검색해보니 https://stackoverflow.com/questions/65724281/cannot-destructure-property-name-of-node-as-it-is-null Cannot destructure property 'name' of 'node' as it is null when I want to install dependencies of the aurelia project, got this error: npm ERR! code 1..