작성
·
1.5K
0
npx create-react-app my-app이라고 작성했는데 오류가 나타납니다.
node.js와 npm버전은 모두 14.0과 6.14 이상입니다
PS C:\Users\이민준> npx create-react-app my-app
npm ERR! code ENOENT
npm ERR! syscall lstat
npm ERR! path C:\Users\이민준\AppData\Roaming\npm
npm ERR! errno -4058
npm ERR! enoent ENOENT: no such file or directory, lstat 'C:\Users\이민준\AppData\Roaming\npm'
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! C:\Users\이민준\AppData\Local\npm-cache\_logs\2023-08-02T12_46_01_759Z-debug-0.log
PS C:\Users\이민준>
답변 1
1
안녕하세요, 소플입니다.
아래 명령어들을 순서대로 한 번 실행해보시기 바랍니다~
npm uninstall -g create-react-app
npx create-react-app my-app
감사합니다.
해결했습니다. 감사합니다