Dandy Now!
  • [Vue.js][error] npm run serve 실행 에러 해결 | 'vue-cli-service'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는배치 파일이 아닙니다. | npm ERR! code ERESOLVE
    2022년 03월 19일 16시 21분 00초에 업로드 된 글입니다.
    작성자: DandyNow
    728x90
    반응형

    Github의 프로젝트를 다른 PC에서 pull 한 후 서버를 실행했는데 실패했다.

    C:\\Users\\user\\Documents\\GitHub\\bootcamp\\vue\\project02>npm run serve
    
    > project02@0.1.0 serve
    > vue-cli-service serve
    
    'vue-cli-service'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는
    배치 파일이 아닙니다.

     

    .gitignore된 폴더와 파일 때문일거라 보고 npm install을 실행했는데, "npm ERR! code ERESOLVE..." 에러가 발생했다.

    C:\\Users\\user\\Documents\\GitHub\\bootcamp\\vue\\project02>npm install
    npm ERR! code ERESOLVE
    npm ERR! ERESOLVE unable to resolve dependency tree
    npm ERR!
    npm ERR! While resolving: project02@0.1.0
    npm ERR! Found: eslint-plugin-vue@8.5.0
    npm ERR! node_modules/eslint-plugin-vue
    npm ERR!   dev eslint-plugin-vue@"^8.0.3" from the root project      
    npm ERR!
    npm ERR! Could not resolve dependency:
    npm ERR! peer eslint-plugin-vue@"^7.0.0" from @vue/eslint-config-standard@6.1.0
    npm ERR! node_modules/@vue/eslint-config-standard
    npm ERR!   dev @vue/eslint-config-standard@"^6.1.0" from the root project
    npm ERR!
    npm ERR! Fix the upstream dependency conflict, or retry
    npm ERR! this command with --force, or --legacy-peer-deps
    npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
    npm ERR!
    npm ERR! See C:\Users\user\AppData\Local\npm-cache\eresolve-report.txt for a full report.
    
    npm ERR! A complete log of this run can be found in:
    npm ERR!     C:\Users\user\AppData\Local\npm-cache\_logs\2022-03-19T07_04_07_732Z-debug-0.log

     

    이 문제에 대한 해결법은 "https://iancoding.tistory.com/154"에서 찾을 수 있었다. 터미널 창에서 아래 명령어를 실행하면 된다.

    npm install --save --legacy-peer-deps

     

     

     

    728x90
    반응형
    댓글