Error
[오류해결] ENOENT: no such file or directory, chmod '...../uuid/dist/bin/uuid'
이안92
2021. 7. 21. 11:57
반응형
npm ERR! code ENOENT
npm ERR! syscall chmod
npm ERR! path /Users/ian/Documents/project/back/node_modules/uuid/dist/bin/uuid
npm ERR! errno -2
npm ERR! enoent ENOENT: no such file or directory, chmod '/Users/ian/Documents/project/back/node_modules/uuid/dist/bin/uuid'
npm ERR! enoent This is related to npm not being able to find a file.
npm ERR! enoent
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/ian/.npm/_logs/2021-07-21T02_50_31_084Z-debug.log
깃허브에서 코드를 다운받아 npm install 시 갑자기 위와 같은 오류가 등장했다.
해결방법
이 경우, node_modules 폴더와 package-lock.json 파일을 삭제한다.
그리고 다시 터미널에서 npm install 해주면 오류없이 package.json 파일이 잘 설치되는 것을 확인할 수 있다.
반응형