0


运行yarn run serve出现错误‘vue-cli-service‘ 不是内部或外部命令,也不是可运行的程序

问题:

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运行时报如下错误:

在这里插入图片描述

解决方法:

#MAC下
export NODE_OPTIONS=--openssl-legacy-provider

#windows下
$env:NODE_OPTIONS="--openssl-legacy-provider"

本文转载自: https://blog.csdn.net/Januea/article/details/129275210
版权归原作者 Januea 所有, 如有侵权,请联系我们删除。

“运行yarn run serve出现错误‘vue-cli-service‘ 不是内部或外部命令,也不是可运行的程序”的评论:

还没有评论