bash /usr/bin/ng:Angular中没有这样的文件或目录

前端之家收集整理的这篇文章主要介绍了bash /usr/bin/ng:Angular中没有这样的文件或目录前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
当我通过ng serve运行我的Angular项目时,它会出现以下错误

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

我已经运行了npm install -g @ angular / cli

我遇到了同样的问题,这对我有用. 1)通过运行ls -la~ / |找到.bashrc文件更多2)在编辑器中打开,在我的例子中是emacs emacs~ / .bashrc 3)在文件末尾添加一个别名,指向ng目录的正确路径alias ng =“/usr/local / lib / node_modules / @ angular / cli / bin / ng” 4)保存文件并通过运行sudo source~ / .bashrc来安装它现在通过运行ng -v进行测试
原文链接:https://www.f2er.com/bash/383538.html

猜你在找的Bash相关文章