如何解决以下问题?
aaa@aaa $ bower install bower.json
bower bower.json#* cached git://github.com/Kalitte/app-states.git#0.6.9
bower bower.json#* validate 0.6.9 against git://github.com/Kalitte/app-states.git#*
bower webcomponentsjs#~0.5.4 cached git://github.com/Polymer/webcomponentsjs.git#0.5.5
bower webcomponentsjs#~0.5.4 validate 0.5.5 against git://github.com/Polymer/webcomponentsjs.git#~0.5.4
bower ENOTFOUND Package App States=bower.json not found
bower ENOTFOUND Package App States = bower.json 找不到
答案 0 :(得分:35)
我不知道这是怎么发生的,或者在什么时候发生了这种情况,但它发生在我身上,如果您查看bower_components
文件夹,可能会有一个名为App States
的文件夹。我删除了这个文件夹,然后就可以安装了。
答案 1 :(得分:4)
你在bower.json文件中有你的bower配置,对吗?你没有把这个文件作为参数,它就像你展示的那样混乱。
因此,请输入仅包含bower.json文件的文件夹
bower install
该命令将自动为您找到bower.json。
答案 2 :(得分:0)
对于我来说,bower创建了“ App States”文件夹,删除该文件夹后,该错误得到解决。 删除文件夹后:执行
bower install --allow-root
这应该可以解决问题。