I\'ve installed Angular-CLI using this command
npm install -g @angular/cli
but I\'ve realized that it has installed Angular v5.1.3 but I ne
Using npm install -g @angular/cli you will install the lastest stable version of the @angular/cli.
So once you create an angular project using the cli there will be a package.json file, to specify the version of angular to use for the project change the version you would like to use in the package.json file. Then run npm install.