Pascal
Pascal

Reputation: 12855

Can not uninstall globally installed npm package

Running npm uninstall -g [email protected]

does not remove the folder under:

C:\Users\MyUserName\AppData\Roaming\npm\node_modules\angular2

the CMD waits for 1 second then a new line is created and nothing really happened.

How can I remove the globally installed package then the correct way?

Upvotes: 2

Views: 1456

Answers (1)

Mykhailo Mykhaliuk
Mykhailo Mykhaliuk

Reputation: 240

Probably you specify the wrong name or version. Try just: npm uninstall -g angular2

Upvotes: 2

Related Questions