i clone a project with git, the project was create with ionic 2 but when i execute the command for re-create the node_modules folder i get this error.
npm install
npm WARN deprecated [email protected]: Please update to the latest object-keys
npm ERR! code ETARGET
npm ERR! notarget No matching version found for ionic-native@^3.5.0
npm ERR! notarget In most cases you or one of your dependencies are requesting
npm ERR! notarget a package version that doesn't exist.
npm ERR! notarget
npm ERR! notarget It was specified as a dependency of 'ionic-hello-world'
npm ERR! notarget
npm ERR! A complete log of this run can be found in:
npm ERR! /Users/wihermes/.npm/_logs/2017-06-02T13_58_47_295Z-debug.log
NOTE: I already update npm.
Does anyone know how to fix it?
npm install -g ionic@latestwhich takes it up to v.3.12.0 ... npm complains that there "is no matching version found", but it's clearly installed. Worked to changepackage.jsonto target `"^3.0.0" and then let it install whatever it wanted to. That apparently worked, but it only installed 3.10.3. No idea why the difference, but meh.