报错信息
(在此之前我执行了npm config set registry https://registry.npm.taobao.org
,目的是为了加速npm的安装)
npm install -g @vue/cli
npm ERR! code CERT_HAS_EXPIRED
npm ERR! errno CERT_HAS_EXPIRED
npm ERR! request to https://registry.npm.taobao.org/@vue/cli failed, reason: certificate has expired
npm ERR! A complete log of this run can be found in:
npm ERR! D:\NodeJS\node_cache_logs\2024-06-12T10_10_49_302Z-debug-0.log
解决方法
确定以下信息
1、cmd命令是否是以管理员的身份运行的
2、vue文件安装是否到位
解决步骤
更新 npm
npm install -g npm
清除npm缓存
npm cache clean --force
(如果使用了淘宝镜像加速则需要换到npm官方源)
npm config set registry https://registry.npmjs.org
重新安装
npm install -g @vue/cli