Reputation: 19
I'm a beginner of ionic. I download repo and couldn't start it.(I try npm install) I getting an exit code 13. How can I solve this problem.
Upvotes: 0
Views: 639
Reputation: 11
try command
npm install @ionic/app-scripts@latest --save-dev
and update python to the latest version 3.9.4
Upvotes: 1
Reputation:
Add a new script inside your package.json as lets say
"start": "ionic serve --port=8080"
Then run npm run start from the command line/terminal
what do you get?
Upvotes: 0