2017-11-22 3 views
1

GALP를 말 그대로 설치하려고합니다. 8 월 또는 그 이전부터. 모든 흥분 시간, 그것은 잠시 멈춘 후 ECONNRESET 오류를 던집니다.NPM에서 Gulp를 설치할 수 없음 - ECONNRESET 오류

npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue 
npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue 
npm WARN deprecated [email protected]: graceful-fs v3.0.0 and before will fail on node releases >= v7.0. Please update to [email protected]^4.0.0 as soon as possible. 
Use 'npm ls graceful-fs' to find it in the tree. 
npm ERR! code ECONNRESET 
npm ERR! errno ECONNRESET 
npm ERR! network request to http://registry.npmjs.org/glob-stream/-/glob-stream-3.1.18.tgz failed, reason: read ECONNRESET 
npm ERR! network This is a problem related to network connectivity. 
npm ERR! network In most cases you are behind a proxy or have bad network settings. 
npm ERR! network 
npm ERR! network If you are behind a proxy, please make sure that the 
npm ERR! network 'proxy' config is set properly. See: 'npm help config' 

npm ERR! A complete log of this run can be found in: 
npm ERR!  C:\Users\Chilli\AppData\Roaming\npm-cache\_logs\2017-11-22T17_48_46_679Z-debug.log 

나는 프록시가 없으며 몇 달 동안 google을 검색했지만 아무 것도 작동하지 않았습니다. nodejs와 npm을 여러 번 업데이트하고, 캐시 또는 프록시 설정을 지우고, http 버전의 저장소를 변경했습니다. 로그는 glob-stream 패키지를 설치할 수 없다고 말합니다. 수동으로 설치할 수도 없습니다 - 동일한 오류 ...

NPM 로그 : https://pastebin.com/Ci0AYYzY

답변

1

는 기본적으로, 당신은 gulp 패키지 세계적하지만 gulp-cli를 설치하지 마십시오. 귀하의 로그에 의하면, 당신은 gulp 패키지를 설치하려고 시도했습니다.이 패키지는 dev 종속성 (-D 인수)처럼 설치하려고합니다.

이 시도 :

늦게 응답
npm install gulp-cli -g 
cd your/project/dir 
npm install gulp -D 
+0

미안하지만, 와우 - 즉 어떻게 든 일을! 고맙습니다 :) – TheChilliPL

관련 문제