javascript - 用npm安裝Node-Sass老是報錯是怎么回事?
問題描述
錯誤代碼:gyp ERR! configure errorgyp ERR! stack Error: Can’t find Python executable 'python', you can set the PYTHON env variable.gyp ERR! stack at PythonFinder.failNoPython (C:Users***AppDataRoamingnpmnode_modulesnode-sassnode_modulesnode-gyplibconfigure.js:483:19)gyp ERR! stack at PythonFinder.<anonymous> (C:Users***AppDataRoamingnpmnode_modulesnode-sassnode_modulesnode-gyplibconfigure.js:508:16)gyp ERR! stack at C:Users***AppDataRoamingnpmnode_modulesnode-sassnode_modulesgraceful-fspolyfills.js:284:29gyp ERR! stack at FSReqWrap.oncomplete (fs.js:152:21)gyp ERR! System Windows_NT 6.1.7601gyp ERR! command 'D:Program Filesnodejsnode.exe' 'C:Users*AppDataRoamingnpmnode_modulesnode-sassnode_modulesnode-gypbinnode-gyp.js' 'rebuild' '--verbose' '--libsass_ext=' '--libsass_cflags=' '--libsass_ldflags=' '--libsass_library='gyp ERR! cwd C:Users***AppDataRoamingnpmnode_modulesnode-sassgyp ERR! node -v v8.0.0gyp ERR! node-gyp -v v3.6.2gyp ERR! not okBuild failed with error code: 1npm ERR! code ELIFECYCLEnpm ERR! errno 1npm ERR! node-sass@4.5.3 postinstall: node scripts/build.jsnpm ERR! Exit status 1npm ERR!npm ERR! Failed at the node-sass@4.5.3 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! C:Users***AppDataRoamingnpm-cache_logs2017-07-06T01_07_47_983Z-debug.log
求大佬指點,給大佬遞茶。公司內網,代理已經配置好,不過我的權限可能有的網站和端口會訪問不了,github能上,node.js官網能上,源用的是cnpm。
問題解答
回答1:在跟package.json同目錄創一個名為.npmrc的文件,然后裝個python,最好是2.X版本
把下面這句東西放進去
sass_binary_site=https://npm.taobao.org/mirrors/node-sass/回答2:
提示是需要安裝python,可以安裝個python試試,然后配下PYTHON 的環境變量,重新安裝試試看。
回答3:根目錄創建.npmrc
phantomjs_cdnurl=http://cnpmjs.org/downloadssass_binary_site=https://npm.taobao.org/mirrors/node-sass/registry=https://registry.npm.taobao.org
保存后 重新npm install
回答4:我昨天也試過安裝nodesass失敗,后面轉用淘寶鏡像裝就成功了$ npm install -g cnpm --registry=https://registry.npm.taobao.org (安裝淘寶鏡像)
$ cnpm install node-sass --save (使用淘寶鏡像安裝node-sass)
相關文章:
1. javascript - IOS微信audio標簽不能通過touchend播放2. java-ee - nginx做前端服務器,tomcat+apache做后端,那么war部署在哪里?3. objective-c - iOS開發支付寶和微信支付完成為什么跳轉到了之前開發的一個app?4. 老師百度網盤分享一下WampServer的包啊,我們下載幾kb要下載一天的.5. angular.js - angularjs的自定義過濾器如何給文字加顏色?6. angular.js使用$resource服務把數據存入mongodb的問題。7. docker-machine添加一個已有的docker主機問題8. 關于docker下的nginx壓力測試9. html - 如何用css令背景圖能夠撐滿本身會滾動的頁面?10. 自己安裝了apache2.2,但是重啟apache后出錯了,求解!謝謝!
