问题:
Vue3项目运行yarn run serve出现
$ vue-cli-service serve
'vue-cli-service' 不是内部或外部命令,也不是可运行的程序
或批处理文件。
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
过程分析原因:
返回的问题原因说了vue-cli-service插件的缺失执行不了serve的运行,但这个插件和项目中使用的yarn有关,那就是没安装项目依赖,执行yarn install,在此之前有个前提,要使用yarn,你得先安装yarn
npm install -g yarn
如果你使用的是npm包管理的话就是执行npm install即可
解决方法:
yarn install
运行报错:
1、yarn install运行时报如下错误:
解决方法:
yarn config set ignore-engines true
2、yarn install运行时报如下错误:文章来源:https://www.toymoban.com/news/detail-596243.html
文章来源地址https://www.toymoban.com/news/detail-596243.html
解决方法:
#MAC下
export NODE_OPTIONS=--openssl-legacy-provider
#windows下
$env:NODE_OPTIONS="--openssl-legacy-provider"
到了这里,关于运行yarn run serve出现错误‘vue-cli-service‘ 不是内部或外部命令,也不是可运行的程序的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!