I am trying to install packages using Bower.
Without a .bowerrc file, it works. For example, it bower install angular#1.0.6will be conveniently placed inside ./bower_components.
If there is .bowerrc with { 'directory' : 'public/javascripts/vendor' }, bower install angular#1.0.6will not work. Actually, the output of this command is nothing. It just prints an empty line, then the next line is my invitation to the terminal. The package is not installed anywhere.
However, if there is an empty .bowerrc file, it will install the package inside. / bower _components.
Why doesn't he install packages and how can I fix them? (therefore they will be installed)
Additional Information:
The bower command does not work. bowerwill happen with an error. bower helpalso. In fact, bower anythingit will also be.
source
share