npm install 失败

 

操作系统:win10

nodejs:v10.13.0

报错信息:

npm install 失败_第1张图片

F:\relics_protection\protection_web>npm install

> [email protected] install F:\relics_protection\protection_web\node_modules\node-sass
> node scripts/install.js

Downloading binary from https://github.com/sass/node-sass/releases/download/v4.9.3/win32-x64-64_binding.node
Cannot download "https://github.com/sass/node-sass/releases/download/v4.9.3/win32-x64-64_binding.node":

ESOCKETTIMEDOUT

Hint: If github.com is not accessible in your location
      try setting a proxy via HTTP_PROXY, e.g.

      export HTTP_PROXY=http://example.com:1234

or configure npm proxy via

      npm config set proxy http://example.com:8080

解决办法:

npm i cnpm -g --registry=http://registry.npm.taobao.org
cnpm i node-sass -g

 上述办法实测有效!

你可能感兴趣的:(nodejs)