您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“node-sass中安裝失敗怎么辦”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“node-sass中安裝失敗怎么辦”這篇文章吧。
npm install 時(shí)偶爾遇到報(bào)錯(cuò):沒有安裝python或node-sass 安裝失敗的問題,百度之后發(fā)現(xiàn)是被墻了,但根據(jù)百度的方法換了淘寶鏡像和用了vpn都安裝失敗,最后發(fā)現(xiàn)原來是因?yàn)闆]有卸載之前安裝失敗的包導(dǎo)致的。作者本人最后的解決方案是npm uninstall node-sass,然后使用VPN重新安裝了一遍就成功了。不能翻墻的同學(xué)請(qǐng)看下文
node-sass 安裝失敗的原因
npm 安裝 node-sass 依賴時(shí),會(huì)從 github.com 上下載 .node 文件。由于國(guó)內(nèi)網(wǎng)絡(luò)環(huán)境的問題,這個(gè)下載時(shí)間可能會(huì)很長(zhǎng),甚至導(dǎo)致超時(shí)失敗。
這是使用 sass 的同學(xué)可能都會(huì)遇到的郁悶的問題。
解決方案就是使用其他源,或者使用工具下載,然后將安裝源指定到本地。
解決方法一:使用淘寶鏡像源(推薦)
設(shè)置變量 sass_binary_site,指向淘寶鏡像地址。示例:
npm i node-sass --sass_binary_site=https://npm.taobao.org/mirrors/node-sass/ // 也可以設(shè)置系統(tǒng)環(huán)境變量的方式。示例 // linux、mac 下 SASS_BINARY_SITE=https://npm.taobao.org/mirrors/node-sass/ npm install node-sass // window 下 set SASS_BINARY_SITE=https://npm.taobao.org/mirrors/node-sass/ && npm install node-sass
或者設(shè)置全局鏡像源:
npm config set sass_binary_site https://npm.taobao.org/mirrors/node-sass/
之后再涉及到 node-sass 的安裝時(shí)就會(huì)從淘寶鏡像下載。
解決方法二:使用 cnpm
使用 cnpm 安裝 node-sass 會(huì)默認(rèn)從淘寶鏡像源下載,也是一個(gè)辦法:
cnpm install node-sass
解決方法三:創(chuàng)建.npmrc文件
在項(xiàng)目根目錄創(chuàng)建.npmrc文件,復(fù)制下面代碼到該文件。
phantomjs_cdnurl=http://cnpmjs.org/downloads sass_binary_site=https://npm.taobao.org/mirrors/node-sass/ registry=https://registry.npm.taobao.org
保存后 刪除之前安裝失敗的包(第一次安裝請(qǐng)?zhí)^此步)
npm uninstall node-sass
重新安裝
npm install node-sass
作者后來另一個(gè)項(xiàng)目在沒有使用VPN的情況下測(cè)試此方法,安裝時(shí)報(bào)錯(cuò) ERR! node-sass@3.8.0 postinstall: `node scripts/build.js 改用方法一成功。
解決方法四:下載 .node 到本地
到這里去根據(jù)版本號(hào)、系統(tǒng)環(huán)境,選擇下載 .node 文件,然后安裝時(shí),指定變量 sass_binary_path,如:
npm i node-sass --sass_binary_path=/Users/lzwme/Downloads/darwin-x64-48_binding.node
安裝失敗后重新安裝問題
之前安裝失敗,再安裝就不去下載了,怎么辦呢?那就先卸載再安裝:
npm uninstall node-sass npm i node-sass --sass_binary_site=https://npm.taobao.org/mirrors/node-sass/
相關(guān)錯(cuò)誤提示
提示沒有安裝python、build失敗等,如:
gyp ERR! configure error gyp ERR! stack Error: Can't find Python executable "C:\Users\zhuon\AppData\Local\Programs\Python\Python36\python.EXE", you can set the PYTHON env variable. gyp ERR! stack at PythonFinder.failNoPython (G:\Workspace\ManYan\manyan-nav\node_modules\node-gyp\lib\configure.js:483:19) gyp ERR! stack at PythonFinder.<anonymous> (G:\Workspace\ManYan\manyan-nav\node_modules\node-gyp\lib\configure.js:508:16) gyp ERR! stack at G:\Workspace\ManYan\manyan-nav\node_modules\graceful-fs\polyfills.js:284:29 gyp ERR! stack at FSReqWrap.oncomplete (fs.js:152:21) gyp ERR! System Windows_NT 10.0.15063 gyp ERR! command "C:\\dev\\nodejs\\node.exe" "G:\\Workspace\\ManYan\\manyan-nav\\node_modules\\node-gyp\\bin\\node-gyp.js" "rebuild" "--verbose" "--libsass_ext=" "--libsass_cflags=" "--libsass_ldflags=" "--libsass_library=" gyp ERR! cwd G:\Workspace\ManYan\manyan-nav\node_modules\node-sass gyp ERR! node -v v8.4.0 gyp ERR! node-gyp -v v3.6.2 gyp ERR! not ok Build failed npm WARN co-mocha@1.2.0 requires a peer of mocha@>=1.18 <4 but none was installed. npm WARN egg-restapi-module-tool@1.0.0 No repository field. npm WARN egg-restapi-module-tool@1.0.0 scripts['server'] should probably be scripts['start']. npm ERR! code ELIFECYCLE npm ERR! errno 1 npm ERR! node-sass@3.8.0 postinstall: `node scripts/build.js` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the node-sass@3.8.0 postinstall script. npm ERR! This is probably not a problem with npm. There is likely additional logging output above. npm ERR! A complete log of this run can be found in: npm ERR! D:\nodejs\cache\_logs\2017-09-02T16_06_24_298Z-debug.log
以上是“node-sass中安裝失敗怎么辦”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。