📌  相关文章
📜  bash: ng: command not found yarn - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:44.102000             🧑  作者: Mango

代码示例1
Your yarn / npm module path might not be in PATH, therefore system is not able to locate it.

Simply add yarn / npm module into your path and it should work:

export PATH="$(yarn global bin):$PATH"