安装vue-cli脚手架出错:

npm install @vue/cli -g

出现错误
错误1:

npm WARN deprecated @hapi/joi@15.1.1: Switch to 'npm install joi'

在这里插入图片描述
解决方法:需要清一下缓存,再执行该指令

npm cache clean --force

npm install @vue/cli -g
# 检验安装vue-cl是否成功
vue --version
vue -V

错误2:

npm ERR! cb() never called!

npm ERR! This is an error with npm itself. Please report this error at:

在这里插入图片描述
解决方法:自己的npm设置了代理,请把代理去掉,如下命令:

npm config delete proxy 
或
npm config delete https-proxy

npm install @vue/cli -g
# 检验安装vue-cl是否成功
vue --version
vue -V

错误3:

npm ERR! Unexpected end of JSON input while parsing near '...ue":"^1.0.0","buble":'

npm ERR! A complete log of this run can be found in:
npm ERR!     C:\Users\LiuQQ\AppData\Roaming\npm-cache\_logs\2022-11-13T13_14_52_344Z-debug.log

在这里插入图片描述
解决方法:清除缓存

npm cache clean --force

npm install @vue/cli -g
# 检验安装vue-cl是否成功
vue --version
vue -V

错误4:

npm ERR! network request to https://registry.npmjs.org/@vue%2fcli-ui-addon-widgets failed, reason: connect ETIMEDOUT 104.16.21.35:443

解决方法:

采用cnpm镜像可以解决
输入下面这个命令,安装完成之后,再接着安装就好了
npm install -g cnpm --registry=https://registry.npm.taobao.org

安装较慢时,使用淘宝镜像cnpm

npm install -g cnpm --registry=https://registry.npm.taobao.org
Logo

前往低代码交流专区

更多推荐