当我运行时:
vue --version
我收到此错误消息:
Command 'vue' not found, did you mean:
command 'vpe' from deb texlive-latex-extra
Try: sudo apt install <deb name>
笔记:
npm config get prefix
/home/begueradj/.nvm/versions/node/v12.8.0
和:
npm list vue
/home/begueradj
└── [email protected]
我之前跑过:
yarn global add @vue/cli
yarn global add @vue/cli-service-global
如何解决这个问题?
目前,当我将其添加到~/.profile
export PATH="$(yarn global bin):$PATH"
并运行:source ~/.profile
问题已解决...但仅适用于当前的终端会话(source .profile
每次打开新的终端会话时我都必须运行)
这是我找到的解决方案:
我必须将上面间接提到的变量 (
.yarn/bin
) 永久添加到/etc/environment::/.yarn/bin
然后我重新启动我的笔记本电脑并让它工作: