场景
使用 element-plus-vite-starter
出现如下错误
解决办法
npm config set proxy null
npm config set https-proxy null
npm --registry https://registry.npm.taobao.org info underscore
这段代码是使用 Node Package Manager (npm) 执行的三个命令。以下是每个命令的解释:
npm config set proxy null:该命令将 npm 的代理配置设置为 null,这意味着 npm 在向互联网发出请求时不使用代理。如果您没有使用代理并希望直接访问互联网,这将很有用。
npm config set https-proxy null:该命令将 npm 的 HTTPS 代理配置设置为 null。这类似于第一个命令,但它 specifically 将 HTTPS 代理设置为 null。如果您没有使用 HTTPS 代理,可以使用此命令将其禁用。
npm --registry https://registry.npm.taobao.org info underscore:该命令使用 npm 命令行工具查询有关 underscore 包的信息。 --registry 选项用于指定用于该包的注册表。在本例中,指定的注册表是 https://registry.npm.taobao.org,这是中国淘宝网站使用的注册表。使用 info 命令可以显示有关该包的信息,包括其版本、描述和依赖项。
再次
npm install
成功
评论区