-1

For each project I use different version of angular-cli. So I need to manage two or more angular-cli version in one system. How can I install those?

YakovL
  • 7,557
  • 12
  • 62
  • 102
Anjusha T Shaju
  • 106
  • 1
  • 9
  • 2
    Possible duplicate of [angular-cli different versions in the same computer](https://stackoverflow.com/questions/43018777/angular-cli-different-versions-in-the-same-computer) – Nico Haase Feb 05 '19 at 09:40

1 Answers1

0

Use local version of @angular/cli instead of global version.

Global Version - npm install -g @angular/cli Local Version - npm install @angular/cli

For both the project install the angular version locally in the project.

Ankur Jain
  • 221
  • 1
  • 6