Try this below command
$ npm cache verify
$ npm cache clean --force
and then try again to install the angular CLI
If you still get the error then install yarn package manager.
Install yarn by running this
$ npm install -g yarn
and then configure angular cli to use yarn package manager, by running this command
$ ng config -g cli.packageManager yarn
Top comments (0)