Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.2k views
in Technique[技术] by (71.8m points)

bash /usr/bin/ng: No such file or directory in 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

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...