jayM
jayM

Reputation: 602

angular invalid version: 1.2.12 Error Bower

When I try this command bower install angular

gives me this result:

bower install angular
bower cloning git://github.com/angular/bower-angular.git
bower cached git://github.com/angular/bower-angular.git
bower fetching angular
bower checking out angular#v1.2.12-build.2216+sha.5850e61
bower error invalid version: 1.2.12-build.2216+sha.5850e61

There were errors, here's a summary of them:
- angular invalid version: 1.2.12-build.2216+sha.5850e61 

Any help is very appreciated

Upvotes: 1

Views: 1054

Answers (1)

dcodesmith
dcodesmith

Reputation: 9614

The latest stable version seems to 1.2.11, so try specifying a version like

bower install angular#1.2.11

According to their wiki

1.2.11, cryptocurrency-hyperdeflation is the lastest stable version.

I suggest you visit their official website or wiki page before you run bower. It's also advisable to specifiy a version in future. This advice also applies to all other libraries you intend to use

Upvotes: 2

Related Questions