Hello everyone,

Greetings today!

Let's get started today as we look at how to install the latest version of Angular on Windows.

To install Angular, you need to install node js on your system first, so go here and download the node js installer. Then click the installer and complete the installation process.

Once node-js is installed, the next step is to install the Angular CLI using npm [node package manager].

To install the latest version of Angular on Windows, open cmd in administrator mode, then run the following command in a command prompt:

npm install -g @angular/cli@latest [here @latest is optional & -g means install globally on system.]

The above command downloads and installs the Angular CLI from the node's package manager repository. Once the installation is complete, the Angular CLI version will be displayed.

For Mac, you need to use sudo as shown below.

sudo npm install -g @angular/cli@latest

You've now seen how to install the latest versions of Angular and Node JS on Windows. Feel free to comment if you run into any issues.

Thanks

Enjoy your learning!

Another post you want to see

Data Binding In Angular