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

前端之家收集整理的这篇文章主要介绍了无法在Windows 7上安装浏览器同步前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在安装NodeJs后在 Windows 7上安装browser-sync.但我收到以下错误

C:\Users\nikhil.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:\Users\nikhil.wagh\npm-debug.log

解决方法

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

您的环境变量存在问题:

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

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

C:\Users\[your username]\AppData\Roaming\npm

C:\Program Files (x86)\nodejs\

检查PATH变量中应该有2个路径

C:\Users\[your username]\AppData\Roaming\npm is beforeC:\Program Files (x86)\nodejs\

来源:-npm installation problem in windows

猜你在找的Windows相关文章