'vue-cli-service' 不是内部或外部命令,也不是可运行的程序 或批处理文件。

方法一

1.首先删除node_modules目录

2.项目根目录下执行如下两个命令(如果报错提示什么SSL 10054连接VPN)

npm cache clean --force
npm install --registry=https://registry.npm.taobao.org

3.如果报错提示什么SSL 10054连接VPN

4.如果还是不行就删除package.json下的tui-editor,然后执行npm install --save tui-editor

方法二

npm install --registry=https://registry.npmmirror.com

方法三

全局配置最新淘宝镜像

一、设置代理

1.设置:挂梯子查看代理端口,我这儿是7897,打开git命令行,执行下面两行代码

git config --global http.proxy 127.0.0.1:7897

git config --global https.proxy 127.0.0.1:7897

2.取消:后续如果不挂梯子可能导致拉去/提交不了代码,执行下面方法取消就行

git config --global --unset http.proxy

git config --global --unset https.proxy

 

二、设置镜像

由于原来的淘宝镜像已经不被沿用,目前配置最新淘宝镜像的步骤

1、npm cache clean --force 清空缓存

2、npm config set registry https://registry.npmmirror.com 设置环镜像源(淘宝)

3、npm config get registry 查看是否设置成功

4、npm install

posted @ 2023-04-10 16:54  明年上初中  阅读(571)  评论(0编辑  收藏  举报