Am using this command "npm install -g ember-cli" to install ember-cli. It installs me version 1.13.x, but I need to install ember version 1.10.0. Is there any command to install it?
First delete your node_modules
and bower_components
folders. Given your package.json
and bower.json
files are correct, run:
npm install && bower install
if it still does not work, run:
npm install ember-cli@1.10.0
Also I would suggest you don't install it globally in case you have other projects that require different versions of ember cli.