Reputation: 12855
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
Reputation: 240
Probably you specify the wrong name or version. Try just: npm uninstall -g angular2
Upvotes: 2