When you want to setup the Angular then firstly check Nodejs should be installed. if it is not installed then install firstly through below command.
Step1
Note:- If you have already installed Nodejs then directly move to Step2.
1) sudo apt-get install curl
2) curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash –
Now, Install Nodejs
3) sudo apt-get install nodejs
After installed Nodejs, check the version
node -v
npm -v
Step2
Now, you will install Angular through the angular/CLI command.
npm install -g @angular/CLI
after installed, check the version
ng --version
Now,start to create the project
Syntax:-
ng new projectName
Example:- I am creating EmployeeManagement Project
ng new EmployeeManagement
Now, goto the EmployeeManagement directory
cd EmployeeManagement
run the command
ng serve --open
After compiled successfully, you can see the URL.