반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- file not found Error
- gitsquash
- react-ga
- formik submitting not working
- git commit 협업
- 리액트구글애널리틱스
- s3이미지다운로드됨
- 시스템설계면접팁
- 테스트코드책
- 시스템설계면접
- 가상면접으로대규모시스템
- 디자인패턴
- 리팩터링2판테스트
- 시스템설계
- cypressBDD
- 시스템설계면접예시
- 시스템설계방법
- react
- 헤드퍼스트전략패턴
- FirebaseAnalytics
- 가상면접3장
- 리팩토링2판4장
- git squash
- Git commit 합치기
- 가상면접2장
- git commit merge
- formik react-query submitting not working
- 전략패턴
- cypress React
- awss3
Archives
- Today
- Total
mingg IT
This is probably not a problem with npm. There is likely additional logging output above. 에러 해결법 본문
FrontEnd
This is probably not a problem with npm. There is likely additional logging output above. 에러 해결법
mingg123 2022. 10. 24. 10:37npm install을 진행하려 했으나 에러가 발생했다.
해결법은 다음과 같다.
1. npm cache 지우기
npm cache clean -f
2. node_modules 폴더 지우기
rmdir /s node_modules (window 기준 명령어)
rm -rf node_modules (linux 기준 명령어.. 였던것 같다)
3. npm 설치하기
npm install
성공!
'FrontEnd' 카테고리의 다른 글
[React] HMR 이 정상동작 하지 않는 경우 (HMR] Update failed: TypeError: Failed to fetch) 에러 (0) | 2022.12.13 |
---|---|
[Vue] Vue3+typescript 공통 컴포넌트 만드는 방법 (0) | 2022.11.18 |
[Vue3 + Typescript + Cypress] Cypress 도입하기 (0) | 2022.10.23 |
[HTML] form 태그 안에 button 태그가 있을 경우 click 이벤트가 발생하는 문제 (1) | 2022.10.14 |
[JavaScript] Lodash cloneDeep import 하기(Tree Shaking) (1) | 2022.10.05 |
Comments