Home > Enterprise >  How can I install angular cli compatible with node 13.14.0?
How can I install angular cli compatible with node 13.14.0?

Time:12-22

I have windows 7, so I tried to install an old version of node: node 13.14.0 But when I tried to install the Angular CLI using this line "npm i -g @angular/cli" I had this error. What can I do? What's the cli version compatible with node 13.14.0? thanks in advance

enter image description here

CodePudding user response:

Install a specific version:

npm install -g @angular/[email protected]

CodePudding user response:

You can refer below links to identify the exact version of angular CLI compatible in your case. It helps me also.

Angular-AngularCli-Node Compatibility List

Angular-TypeScript-Node Compatibility List

  • Related