Reputation: 172
I'm trying to start my first ionic app. it says I should type in "ionic start myApp tabs". When I do that, it gets the directory, downloads, and extracts tabs starter and tries to install dependencies. The problem is when installing the dependencies it shows the code below with error and doesn't start the app
I've tried restarting the cmd console, running it as admin and clearing npm. doesn't still work
Upvotes: 0
Views: 968
Reputation: 1122
try this cmd: npm cache clean --force
and try this: npm i -g ionic
then create a project again.
Upvotes: 1