Mindan
Mindan

Reputation: 1019

Cannot install Typescript " The package [email protected] does not satisfy its siblings' peerDependencies requirements!"

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

Answers (1)

nuzz
nuzz

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

Related Questions