我正在尝试使用angularjs
中的bower安装OSX el-captain
。当我运行bower install时,它会输出几行,如:
bower cached git://github.com/twbs/bootstrap.git#3.3.6
bower validate 3.3.6 against git://github.com/twbs/bootstrap.git#*
然后变得卡住了。我也尝试了详细的选项,希望我能获得更多信息,但输出保持不变。
任何想法为什么会卡住?
感谢。
答案 0 :(得分:0)
我有同样的问题,尝试此修复,它将使用https方法而不是git方法。
git config --global url.https://.insteadOf git://
希望它能解决你的问题。
答案 1 :(得分:0)
由于代理设置很少,您的系统可能会在通过bower从git下载软件包时遇阻。所以在您的.bowerrc文件中,您需要提供代理配置。
此链接可能对您有所帮助! bower behind a proxy
这是示例.bowerrc文件:
{
"directory": "bower_components",
"proxy":"your proxy http url",
"https-proxy":"http://<username>:<password>@<your proxy>"
}
在上述设置中,您需要替换为您的信息。