Reputation: 237
I'm New to Angular, while I'm trying to install a particular a particular version of Angular.
I got the below message.
C:\Users\Dreams>npm install -g @angular/[email protected]
npm ERR! code ETARGET
npm ERR! notarget No matching version found for @angular/[email protected]
npm ERR! notarget In most cases you or one of your dependencies are requesting
npm ERR! notarget a package version that doesn't exist.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Dreams\AppData\Roaming\npm-cache_logs\2018-08-17T09_42_35_435Z-debug.log
From Browsing I could see the list of Angular versions.
https://github.com/angular/angular/blob/master/CHANGELOG.md
I have also tried by giving 5.2.4 - 5.2.9.
But while I gave a try on 1.4.9 it installed successfully.
My requirement is to install angular 5 on my system.
If we directly install without specifying the version it installs the latest version.
Upvotes: 3
Views: 26261
Reputation: 1534
There is no version @angular/[email protected]
The version link you are referring to is for angular
versions. Not @angular/cli
Check here for all available versions
Upvotes: 4