ng: command not found while creating new project using angular-cli

后端 未结 30 2933
忘掉有多难
忘掉有多难 2020-11-28 23:42

Installed angular-cli globally using (npm install -g angular-cli) but when I\'m trying to create project using ng new my-project it is throwing err

30条回答
  •  广开言路
    2020-11-29 00:13

    For Mac run

    npm install -g @angular/cli@latest

    then run

    alias ng="/usr/local/lib/node_modules/node/lib/node_modules/@angular/cli/bin/ng"
    

    Check if working

    ng version
    

提交回复
热议问题