Reputation: 102
I install node js then i put the command on prompt 'npm install -g ionic'
but i am facing issue ionic is not install properly in my system can you please help me?
Upvotes: 0
Views: 138
Reputation: 1086
you are using a old node version. Please update Your node version. also make sure you install a LTS version. you can check your node version with this command
node --version
Upvotes: 1
Reputation: 3021
You are using old version of NodeJS (4.4.6), Ionic needs for proper functioning at least node >= 6.4.0
. As stated in log information.
Try installing newer version.
Upvotes: 1