I try to install ngCordova after installed bower but I have an error that
bower is not recognized as an internal command any ideas how to fix this problem

First check bower is installed with your machine using the following Command
bower -vIt gives any results with version number then try to install 'ngCordova' like
bower install ngCordovathen need to add ngcordova library before cordova.js
<script src="lib/ngCordova/dist/ng-cordova.js"></script>
<script src="cordova.js"></script>
If bower is not installed then need to follow these steps: 1) Install bower globally by npm(NodePackageManager)
npm install -g bower2) Check the version
bower -v3) Now install ngCordova
bower install ngCordova4) Need to add ngcordova library before cordova.js
<script src="lib/ngCordova/dist/ng-cordova.js"></script>
<script src="cordova.js"></script>
That's it. Surely It works :-)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With