# package.json
npm을 설치하려는 과정에서 발생하는 에러로써 "npm install"을 하고 나서 아래와 같은 에러가 출력된다면 package file이 없어서 발생한 문제일 가능성이 있다.
"npm ERR! A complete log of this run can be found in:" 에러는 아래의 다른 에러들과 함께 출력되어 나온다.
npm ERR! code ENOENT
npm ERR! syscall open
npm ERR! path <path>
npm ERR! errno -2
npm ERR! enoent ENOENT: no such file or directory, open <path>
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent
위와 같은 에러가 발생하는 이뉴는 npm을 설치하려는 경로에 package.json 파일이 없기 때문에 필요한 파일을 만들어주면 문제를 해결할 수 있다.
npm init -y
728x90
'Computer Science > Errors' 카테고리의 다른 글
[Errors] Node.js, Error: Cannot find module (2) | 2024.10.12 |
---|---|
[Errors] Rstudio, Error in plot.new() : figure margins too large (0) | 2024.09.19 |
[Errors] Hyperledger Fabric, command not found: peer (0) | 2024.09.17 |
[Errors] {"error":"unauthorized","reason":"You are not a server admin."} (0) | 2024.09.17 |
[Errors] curl: (3) URL rejected: Bad hostname (0) | 2024.09.16 |
댓글