无法在Windows 7上安装浏览器同步



我正在尝试在Windows 7帖子安装nodejs上安装浏览器同步。但是我遇到以下错误:

C:Usersnikhil.wagh>npm install -g browser-sync
npm ERR! Windows_NT 6.1.7601
npm ERR! argv "C:\Program Files\nodejs\node.exe" "C:\Program Files\nodejs\
node_modules\npm\bin\npm-cli.js" "install" "-g" "browser-sync"
npm ERR! node v4.4.5
npm ERR! npm  v2.15.5
npm ERR! code ECONNREFUSED
npm ERR! errno ECONNREFUSED
npm ERR! syscall connect
npm ERR! Error: connect ECONNREFUSED 23.235.39.162:443
npm ERR!     at Object.exports._errnoException (util.js:870:11)
npm ERR!     at exports._exceptionWithHostPort (util.js:893:20)
npm ERR!     at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1061:14)
npm ERR!  { [Error: connect ECONNREFUSED 23.235.39.162:443]
npm ERR!   code: 'ECONNREFUSED',
npm ERR!   errno: 'ECONNREFUSED',
npm ERR!   syscall: 'connect',
npm ERR!   address: '23.235.39.162',
npm ERR!   port: 443 }
npm ERR!
npm ERR! If you are behind a proxy, please make sure that the
npm ERR! 'proxy' config is set properly.  See: 'npm help config'
npm ERR! Please include the following file with any support request:
npm ERR!     C:Usersnikhil.waghnpm-debug.log

您的环境变量可能有问题: -

您的环境变量有问题:

Control panel -> System -> Advanced System Settings -> Advanced -> Environment variables.

在环境变量中搜索路径变量。路径变量必须包含以下路径:

C:Users[your username]AppDataRoamingnpm
C:Program Files (x86)nodejs

检查您应该在路径变量和

中具有2个路径
C:Users[your username]AppDataRoamingnpm is beforeC:Program Files (x86)nodejs

来源:-NPM安装问题

最新更新