我按照the instructions of the official page安装bower,但是当我到达命令行时:
bower install --save Polymer/core-elements
bower卡住并且输出任何东西很长一段时间,最后我得到一个"内存不足"错误。有什么问题?
我正在使用Ubuntu 14.04
答案 0 :(得分:5)
Bower存在一个周期性问题,已经在主人身上得到修复,但尚未发布。 https://github.com/bower/bower/issues/1169
答案 1 :(得分:4)
根据http://github.com/bower/bower/issues/1324,有一种解决方法。
通过添加一行来编辑bower.json,因此依赖区域看起来像这样
dependencies": {
"polymer": "Polymer/polymer#~0.3.1",
"core-elements": "Polymer/core-elements"
}
然后运行$ bower update
你也可以添加其他包。
我实际上是聚合物的新手(安装它时遇到了麻烦,你可以想象)所以我不肯定这是有效的。