最近使用yarn安装了vue-cli,命令如下
yarn global add @vue/cli
安装完成后通过命令查看已经安装成功
C:\Windows\system32>yarn global list
yarn global v1.22.17
info "@ant-design/codemod-v4@1.1.0" has binaries:
- antd4-codemod
info "@vue/cli@5.0.4" has binaries:
- vue
Done in 0.75s.
然后按照官方教程
vue create hello-world
vue : 无法将“vue”项识别为 cmdlet、函数、脚本文件或可运行程序的名称。请检查名称的拼写,如果包括路径,请确保路径正确,然后再试一次。
所在位置 行:1 字符: 1
+ vue create hello-world
+ ~~~
+ CategoryInfo : ObjectNotFound: (vue:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
网上去搜了搜,发现需要
配置环境变量
1、通过命令得到路径
yarn global bin
C:\Users\******\AppData\Local\Yarn\bin
2、添加环境变量
不同的操作系统可自行百度
我的电脑 -> 右键属性 -> 找到高级系统设置 -> 选择高级 -> 点击环境变量 ->
选择系统变量中的Path进行编辑 -> 将第1步得到路径复制进去 -> 保存后注销电脑
|