1. Install Node.js

You must have Node.js installed on your system. Use the following commands to install NPM and Node.js. The first command will install some required packages on the system. The second command will add PPA for node.js to your system.

You can visit our tutorial to install latest Node.js on Ubuntu and Debian systems.

sudo apt-get install python-software-properties
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install nodejs


2. Install Cordova

Use the following command to install Cordova on your system globally using npm command. It will install all other required node modules on your system.

sudo npm install -g cordova


3. Install Ionic Framework

Ionic provides and commands line utility for creating packages, build and start applications. Use NPM command to install Ionic framework on your system.

sudo npm install -g ionic

After completing the installation of the Ionic framework, use the following command to check the installed version.

ionic -v

3.19.1


4. io Create Application with Ionic

Now, You need to create a new Cordova project on your computer using the following command.

ionic start HelloWorld blank

Now use one of the following commands to enable iOS or Android platform. iOS platform will work on MacOS only.

ionic platform add ios
ionic platform add android

 

Was this answer helpful? 0 Users Found This Useful (0 Votes)