Sprity安装不成功
好像是里面模块
sprity-lwip
安装不了的问题。
npm install sprity
单独安装sprity-lwip也不行。
npm installl sprity-lwip
sprity需要安装
sprity-lwip
,而
sprity-lwip
又需要安装模块
lwip
,
lwip
需要
node-gyp
预编译才可以。
最后我尝试安装
lwip
,也不成功,快吐血了。
Installation of this module involves compiling native code. If npm
install lwip failes, you probably need to setup your system. See
instructions . Building on Windows with Visual Studio requires
version 2013 or higher.
上面这句是lwip的安装介绍,如果安装失败的话,可能需要设置下系统,可我根据他说的,安装了必须的,还是不行。
npm node.js web前端开发 sprity JavaScript
Answers
可以试下用以下3种方法
1.通过config命令
npm config set registry https://registry.npm.taobao.org
npm info underscore (如果上面配置正确这个命令会有字符串response)
2.命令行指定
npm --registry https://registry.npm.taobao.org info underscore
3.编辑 ~/.npmrc 加入下面内容
registry = https://registry.npm.taobao.org