Ionic 2 Projects: updating to beta.6

i have this problem.

`-npm ERR! Windows_NT 10.0.10586
npm ERR! argv “C:\Program Files\nodejs\node.exe” “C:\Program Files\nodejs\node_modules\npm\bin\npm-cli.js” "install"
npm ERR! node v4.4.2
npm ERR! npm v2.15.0
npm ERR! code EPEERINVALID

npm ERR! peerinvalid The package angular2@2.0.0-beta.15 does not satisfy its siblings’ peerDependencies requirements!
npm ERR! peerinvalid Peer ionic-angular@2.0.0-beta.6 wants angular2@^2.0.0-beta.15
npm ERR! peerinvalid Peer ng2-translate@2.0.0 wants angular2@>= 2.0.0-beta.16

npm ERR! Please include the following file with any support request:
npm ERR! C:\Users\sebastiaorealino\Documents\TTD repos\ttd_mobile_project\npm-debug.log`

Does anyone know what can it be?

npm is telling you exactly what is wrong:

npm ERR! peerinvalid The package angular2@2.0.0-beta.15 does not satisfy its siblings’ peerDependencies requirements!
npm ERR! peerinvalid Peer ionic-angular@2.0.0-beta.6 wants angular2@^2.0.0-beta.15
npm ERR! peerinvalid Peer ng2-translate@2.0.0 wants angular2@>= 2.0.0-beta.16

You are attempting to use two packages that want incompatible versions of Angular. Ionic wants beta15 and ng2-translate wants >=beta16. This is all described in the issue you referenced in your other thread.

By the way, private messages are not an appropriate way to ask for assistance.

1 Like

Have you updated npm to the latest version? That fixed some invalid peer issues over here.