반응형
npm ERR! Error: EPERM: operation not permitted, rename
위와 같은 에러를 만난다면 아래와 같은 절차를 거쳐 수정하면 된다.
1. clean cache with (npm 캐시를 한번 지워준다)
npm cache clean --force
2. install the latest version of npm globally as admin: (npm을 글로벌로 최신버전으로 재 설치 해준다)
npm install -g npm@latest --force
3. clean cache with (다시 한번 npm 캐시를 지워준다)
npm cache clean --force
4. Try to install your component once again. (다시 패키지를 설치 해준다)
npm install
반응형
LIST
댓글