Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

bash /usr/bin/ng: No such file or directory in Angular

Tags:

angular

When I run my Angular project by ng serve, it gives this error:

bash: /usr/bin/ng: No such file or directory

I have run npm install -g @angular/cli

like image 510
Sopan Zinjurde Avatar asked Dec 18 '17 14:12

Sopan Zinjurde


1 Answers

I faced the same problem and here is what worked for me.

1) Find the .bashrc file by running -

ls -la ~/ | more

2) Open in editor, in my case emacs -

emacs ~/.bashrc

3) Add an alias at the end of the file pointing to the right path of your ng directory & save the file. e.g. -

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

4) Either restart the terminal or refresh it using -

sudo source ~/.bashrc

5) Now test by running ng -v

like image 158
ash Avatar answered Sep 21 '22 09:09

ash