node.js 找不到 Vue 命令

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/51957631/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-09-02 18:52:52  来源:igfitidea点击:

Vue command not found

node.jsmacosvue.jsnpmvue-cli

提问by lecham

Trying to install Vue, but I am getting an error -bash: vue: command not found.

尝试安装 Vue,但出现错误-bash: vue: command not found

Everything is installed per Vue instructions and I'm not sure why I am getting this issue.

一切都是按照 Vue 说明安装的,我不确定为什么会遇到这个问题。

Thanks in advance!

提前致谢!

Screenshot of an error

错误截图

回答by dziraf

Try updating your PATH variable with this command:

尝试使用以下命令更新您的 PATH 变量:

export PATH=$PATH:/Users/denis/.npm-global/bin

Updating Node/NPM might help too.

更新 Node/NPM 也可能有帮助。

回答by u10257292

It is better to uninstall the Vue with the command: npm uninstall -g @vue/cliand then install again.

最好用命令:卸载Vue,npm uninstall -g @vue/cli然后重新安装。