Notice
Recent Posts
Recent Comments
Archives
반응형
«   2025/02   »
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
Today
Total
02-03 02:31
250x250
관리 메뉴

꿈꾸는 개발자의 블로그

[Error] yarn install 에러 : info There appears to be trouble with your network connection. Retrying... 해결하기 본문

Programming/Node.js

[Error] yarn install 에러 : info There appears to be trouble with your network connection. Retrying... 해결하기

aldrn29 2022. 6. 19. 03:39

에러 원인

yarn istall을 하는 과정에서..

info There appears to be trouble with your network connection. Retrying... 

라는 문구가 발생했고, 모듈 설치가 제대로 이루어지지 않았다. 그래서 찾아보니! 몇 가지 원인이 있었지만, 나의 경우는 네트워크가 느리거나 해당 패키지 파일이 너무 큰 경우에 해당하여 시간을 늘려주면 되는 문제였다.

 

에러 해결방법

아래와 같이 명령어를 입력해주자!

yarn install --network-timeout 600000

 

참고 블로그

 

728x90
728x90

'Programming > Node.js' 카테고리의 다른 글

[Node.js] dependencies vs devDependencies  (0) 2022.06.08
[Node.js] Node.js 과 NPM  (0) 2022.05.28
Comments