npm安装vant时报错
Windows PowerShell
版权所有(C) Microsoft Corporation。保留所有权利。
安装最新的 PowerShell,了解新功能和改进!https://aka.ms/PSWindows
PS D:\Project\Vue\shopping> npm i vant@latest-v2 -S
npm ERR! code CERT_HAS_EXPIRED
npm ERR! errno CERT_HAS_EXPIRED
npm ERR! request to https://registry.npm.taobao.org/vant failed, reason: certificate has expired
npm ERR! A complete log of this run can be found in: C:\Users\53214\AppData\Local\npm-cache\_logs\2024-04-02T04_02_16_480Z-debug-0.log
PS D:\Project\Vue\shopping> npm config set strict-ssl false
PS D:\Project\Vue\shopping> npm i vant@latest-v2 -S
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR!
npm ERR! While resolving: @vue/eslint-config-standard@6.1.0
npm ERR! Found: eslint-plugin-vue@8.7.1
npm ERR! node_modules/eslint-plugin-vue
npm ERR! dev eslint-plugin-vue@"^8.0.3" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer eslint-plugin-vue@"^7.0.0" from @vue/eslint-config-standard@6.1.0
npm ERR! node_modules/@vue/eslint-config-standard
npm ERR! dev @vue/eslint-config-standard@"^6.1.0" from the root project
npm ERR!
npm ERR! Conflicting peer dependency: eslint-plugin-vue@7.20.0
npm ERR! node_modules/eslint-plugin-vue
npm ERR! peer eslint-plugin-vue@"^7.0.0" from @vue/eslint-config-standard@6.1.0
npm ERR! node_modules/@vue/eslint-config-standard
npm ERR! dev @vue/eslint-config-standard@"^6.1.0" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR!
npm ERR! For a full report see:
npm ERR! C:\Users\53214\AppData\Local\npm-cache\_logs\2024-04-02T04_05_36_061Z-eresolve-report.txt
npm ERR! A complete log of this run can be found in: C:\Users\53214\AppData\Local\npm-cache\_logs\2024-04-02T04_05_36_061Z-debug-0.log
PS D:\Project\Vue\shopping> npm i vant@latest-v2 -S --legacy-peer-deps
added 4 packages in 2m
164 packages are looking for funding
run `npm fund` for details
PS D:\Project\Vue\shopping>
针对第一处“certificate has expired”错误的解决方法:
npm config set strict-ssl false
针对第二处“npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.”的解决方法:
在命令后加上“--legacy-peer-deps”
npm i vant@latest-v2 -S --legacy-peer-deps
问题解决,安装成功!