Angular - ng: command not found
I'm trying to learn Angular and my knowledge in terminal is beginner. After I installed Angular and then type ng new my-project
. I get the response ng: command not found
. I've seen other posts that had this problem and I've uninstalled and reinstalled npm and ng.
The last step I took was npm install -g @angular/cli@latest then ng new my-project.
Then I get ng: command not found
.
Guess You are running on Windows (To make @jowey's answer more straightforward).
- Install Angular normally from your bash
$ npm install -g @angular/cli@latest
Next is to rearrange the PATHS to - NPM
- Nodejs
- Angular CLI
in System Environment Variables, the picture below shows the arrangement.
I had that same problem and just solved it.
make sure you have node installed.
after running
npm i -g @angular/cli
when installation is finished, try re-opening your git bash or whatever you're using or open it in a new folder. boom. it worked for me