凉亭安装角度模块安装角度而不是?

时间:2015-02-05 04:52:21

标签: angularjs bower bower-install

我正在尝试安装this角度模块(angular-stripe)。当我输入bower install angular-stripe时(正如文档推荐的那样),我得到:

bower angular-stripe#*          cached git://github.com/bendrucker/angular-stripe.git#4.1.0
bower angular-stripe#*        validate 4.1.0 against git://github.com/bendrucker/angular-stripe.git#*
bower angular-cookies#~1.3.11   cached git://github.com/angular/bower-angular-cookies.git#1.3.12
bower angular-cookies#~1.3.11 validate 1.3.12 against git://github.com/angular/bower-angular-cookies.git#~1.3.11
bower angular#1.3.12            cached git://github.com/angular/bower-angular.git#1.3.12
bower angular#1.3.12          validate 1.3.12 against git://github.com/angular/bower-angular.git#1.3.12

Unable to find a suitable version for angular, please choose one:
1) angular#1.3.11 which resolved to 1.3.11 and is required by angular-animate#1.3.11, angular-cookies#1.3.11, angular-mocks#1.3.11, angular-resource#1.3.11, angular-route#1.3.11, angular-sanitize#1.3.11, angular-scenario#1.3.11, angular-touch#1.3.11, nightwalker 
2) angular#~1.3.2 which resolved to 1.3.11 and is required by angular-stripe#4.1.0 
3) angular#1.3.12 which resolved to 1.3.12 and is required by angular-cookies#1.3.12Prefix the choice with ! to persist it to bower.json

这看起来我正在重新安装角度或其他东西。有没有办法避免这种情况?

1 个答案:

答案 0 :(得分:0)

您需要添加分辨率

 "resolutions": {
    "angular": "~1.3.x"
  }

在你的bower.json文件中

相关问题