Ziaur Rahman
Ziaur Rahman

Reputation: 157

Angular Package Install

I want to install angular cli via npm cli when I run the command I am stuck and nothing happens after that

npm install -g @angular/cli

But it stuck in [email protected] checking installable status after some time.

Upvotes: 2

Views: 240

Answers (1)

Utpaul
Utpaul

Reputation: 2007

I had a same problem but i recovered it using following command:

npm install -g @angular/cli --verbos

if its not work then you need to try yarn. you can download and install form https://yarnpkg.com/lang/en/docs/install/ this website

After install, run the following command

yarn add @angular/cli

Upvotes: 2

Related Questions