Reputation: 1019
I try to install Typescript to compile Angular2 app but I get the following error " The package [email protected] does not satisfy its siblings' peerDependencies requirements!"
Upvotes: 0
Views: 516
Reputation: 647
I had the same problems as you. However I was trying to install the angular-cli, so my fix may or may not work for you. After much mucking around, I found that installing portfinder seems to solve the problems. I ran:
npm install portfinder
Then I ran the cli install and it worked. See if that works for you. Oh, and you need to be running atleast node 4.x and npm 3.x
Upvotes: 1