什么情况~~~怎么破
曾经安装了几个小时才装好,旁边的小伙伴几下就装好了,不排除墙和网速的问题。后来换了一家公司,从此就在没有手动装好过,都是把原来的拷贝过来。(你翻墙的话可以试试)
https://segmentfault.com/a/11... 看看这个链接就可以了
说一个自己发现的方法:直接用浏览器将二进制文件下载下来,然后放到 AppData/Roaming/npm-cache/node-sass/[version]/ ,再执行 npm i , 会看到 Cached binary found 这一行, 说明会使用你刚刚放进缓存的文件去build node-sass 了
AppData/Roaming/npm-cache/node-sass/[version]/
npm i
Cached binary found
这样npm安装的话,会很慢,而且很可能会失败,可以试试淘宝的npm镜像淘宝 NPM 镜像
这是由于翻墙的原因,通过淘宝镜像解决了安装windows系统$ npm install -g cnpm --registry=https://registry.npm.taobao.org或者你直接通过添加 npm 参数 alias 一个新命令:
alias cnpm="npm --registry=https://registry.npm.taobao.org \--cache=$HOME/.npm/.cache/cnpm \--disturl=https://npm.taobao.org/dist \--userconfig=$HOME/.cnpmrc"
$ echo 'n#alias for cnpmnalias cnpm="npm --registry=https://registry.npm.taobao.org \--cache=$HOME/.npm/.cache/cnpm \--disturl=https://npm.taobao.org/dist \--userconfig=$HOME/.cnpmrc"' >> ~/.zshrc && source ~/.zshrc
cnpm install node-sass --save
我也是这样,心酸,旁边的人很容易就装好了,自己折腾了好久。被采纳的答主的方法我也用过,有用,不过就是麻烦了一点。今天又遇到这个问题,发现百度有个解决方法很不错,亲测有效。解决方式很优雅。发链接给你:http://jingyan.baidu.com/albu...
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(6)
曾经安装了几个小时才装好,旁边的小伙伴几下就装好了,不排除墙和网速的问题。后来换了一家公司,从此就在没有手动装好过,都是把原来的拷贝过来。(你翻墙的话可以试试)
https://segmentfault.com/a/11... 看看这个链接就可以了
说一个自己发现的方法:直接用浏览器将二进制文件下载下来,然后放到
AppData/Roaming/npm-cache/node-sass/[version]/
,再执行npm i
, 会看到Cached binary found
这一行, 说明会使用你刚刚放进缓存的文件去build node-sass 了这样npm安装的话,会很慢,而且很可能会失败,可以试试淘宝的npm镜像
淘宝 NPM 镜像
这是由于翻墙的原因,通过淘宝镜像解决了安装
windows系统
$ npm install -g cnpm --registry=https://registry.npm.taobao.org
或者你直接通过添加 npm 参数 alias 一个新命令:
alias cnpm="npm --registry=https://registry.npm.taobao.org \
--cache=$HOME/.npm/.cache/cnpm \
--disturl=https://npm.taobao.org/dist \
--userconfig=$HOME/.cnpmrc"
Or alias it in .bashrc or .zshrc
$ echo 'n#alias for cnpmnalias cnpm="npm --registry=https://registry.npm.taobao.org \
--cache=$HOME/.npm/.cache/cnpm \
--disturl=https://npm.taobao.org/dist \
--userconfig=$HOME/.cnpmrc"' >> ~/.zshrc && source ~/.zshrc
cnpm install node-sass --save
我也是这样,心酸,旁边的人很容易就装好了,自己折腾了好久。被采纳的答主的方法我也用过,有用,不过就是麻烦了一点。今天又遇到这个问题,发现百度有个解决方法很不错,亲测有效。解决方式很优雅。发链接给你:http://jingyan.baidu.com/albu...