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. docker網絡端口映射,沒有方便點的操作方法么?2. docker綁定了nginx端口 外部訪問不到3. thinkphp5.1學習時遇到session問題4. docker容器呢SSH為什么連不通呢?5. nignx - docker內nginx 80端口被占用6. angular.js - angular內容過長展開收起效果7. docker images顯示的鏡像過多,狗眼被亮瞎了,怎么辦?8. 前端 - ng-view不能加載進模板9. javascript - iframe 為什么加載網頁的時候滾動條這樣顯示?10. php - 第三方支付平臺在很短時間內多次異步通知,訂單多次確認收款
