본문 바로가기
Tips/Errors

[svelte template clone][ 'degit@latest' ] 설치가 오류 코드 7로 실패했습니다

by 오늘의개발부 2021. 7. 27.
반응형

svelte template 프로젝트를 클론해오기 위해 

npx degit sveltejs/template svelte-app

명령어를 입력했더니 아래와 같이 에러 메세지가 뜨면서 실패했다.

 

$ npx degit sveltejs/template svelte-app
Error: EEXIST: file already exists, mkdir 'C:\Users\xxx'
TypeError: Cannot read property 'loaded' of undefined
    at exit (C:\nodejs\node_modules\npm\lib\utils\error-handler.js:97:27)
    at errorHandler (C:\nodejs\node_modules\npm\lib\utils\error-handler.js:216:3)
    at C:\nodejs\node_modules\npm\bin\npm-cli.js:78:20
    at cb (C:\nodejs\node_modules\npm\lib\npm.js:225:22)
    at C:\nodejs\node_modules\npm\lib\npm.js:263:24
    at C:\nodejs\node_modules\npm\lib\config\core.js:81:7
    at Array.forEach (<anonymous>)
    at C:\nodejs\node_modules\npm\lib\config\core.js:80:13
    at f (C:\nodejs\node_modules\npm\node_modules\once\once.js:25:25)
    at afterExtras (C:\nodejs\node_modules\npm\lib\config\core.js:171:20)
C:\nodejs\node_modules\npm\lib\utils\error-handler.js:97
  var doExit = npm.config.loaded ? npm.config.get('_exit') : true
  
  TypeError: Cannot read property 'loaded' of undefined
    at exit (C:\nodejs\node_modules\npm\lib\utils\error-handler.js:97:27)
    at process.errorHandler (C:\nodejs\node_modules\npm\lib\utils\error-handler.js:216:3)
    at process.emit (events.js:210:5)
    at process._fatalException (internal/process/execution.js:150:25)
[ 'degit@latest' ] 설치가 오류 코드 7로 실패했습니다

 

사용자 이름에 띄어쓰기가 들어가서 "xxx z"식으로 되어있어 생긴 문제인 듯

 

C:\Users> dir /x

2021-02-08  오후 10:25    <DIR>                       .
2021-02-08  오후 10:25    <DIR>                       ..
2020-10-05  오전 09:23             2,321              xxx
2021-07-27  오전 11:02    <DIR>          XXX~1        xxx z


C:\Users> npm config set cache "C:\Users\XXX~1\AppData\Roaming\npm-cache" --global

 

이렇게 설정하고 다시 

npx degit sveltejs/template svelte-app

하면 잘 설치된다.

반응형