node-sass安装失败 解决办法

接手vue项目按照README 操作报错:

部分错误代码:

gyp verb `which` failed     '    at getNotFoundError (C:\\Users\\ayixidelu\\Desktop\\kline\\HQChart-master\\vue.demo\\bitdemo\\node_modules\\which\\which.js:13:12)\n' +
gyp verb `which` failed     '    at F (C:\\Users\\ayixidelu\\Desktop\\kline\\HQChart-master\\vue.demo\\bitdemo\\node_modules\\which\\which.js:68:19)\n' +
gyp verb `which` failed     '    at E (C:\\Users\\ayixidelu\\Desktop\\kline\\HQChart-master\\vue.demo\\bitdemo\\node_modules\\which\\which.js:80:29)\n' +
gyp verb `which` failed     '    at C:\\Users\\ayixidelu\\Desktop\\kline\\HQChart-master\\vue.demo\\bitdemo\\node_modules\\which\\which.js:89:16\n' +
gyp verb `which` failed     '    at C:\\Users\\ayixidelu\\Desktop\\kline\\HQChart-master\\vue.demo\\bitdemo\\node_modules\\isexe\\index.js:42:5\n' +
gyp verb `which` failed     '    at C:\\Users\\ayixidelu\\Desktop\\kline\\HQChart-master\\vue.demo\\bitdemo\\node_modules\\isexe\\windows.js:36:5\n' +
gyp verb `which` failed     '    at FSReqCallback.oncomplete (fs.js:158:21)',
gyp verb `which` failed   code: 'ENOENT'
gyp verb `which` failed }
gyp verb could not find "python". checking python launcher
gyp verb could not find "python". guessing location 
gyp verb ensuring that file exists: C:\Python27\python.exe
gyp ERR! configure error
gyp ERR! stack Error: Can't find Python executable "python", you can set the PYTHON env variable.
gyp ERR! stack     at PythonFinder.failNoPython (C:\Users\ayixidelu\Desktop\kline\HQChart-master\vue.demo\bitdemo\node_modules\node-gyp\lib\configure.js:484:19)
gyp ERR! stack     at PythonFinder.<anonymous> (C:\Users\ayixidelu\Desktop\kline\HQChart-master\vue.demo\bitdemo\node_modules\node-gyp\lib\configure.js:509:16)
gyp ERR! stack     at C:\Users\ayixidelu\Desktop\kline\HQChart-master\vue.demo\bitdemo\node_modules\graceful-fs\polyfills.js:282:31
gyp ERR! stack     at FSReqCallback.oncomplete (fs.js:158:21)
gyp ERR! System Windows_NT 10.0.18363
gyp ERR! command "D:\\Program Files\\nodejs\\node.exe" "C:\\Users\\ayixidelu\\Desktop\\kline\\HQChart-master\\vue.demo\\bitdemo\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library="

原因:windows平台缺少编译环境

解决方式:

npm install -g node-gyp

删除之前安装失败的包

npm uninstall node-sass

重新安装

npm install node-sass

node-sass安装失败 解决办法_第1张图片
node-sass安装失败 解决办法_第2张图片
搞定
启动成功

你可能感兴趣的:(vue笔记)