【报错示例】
npm ERR! code ETARGET
npm ERR! notarget No matching version found for raphael@2.2.0-c.
npm ERR! notarget In most cases you or one of your dependencies are requesting
npm ERR! notarget a package version that doesn't exist.
npm ERR! A complete log of this run can be found in:
【解决方案】
在了解 npm
语义版本控制及语义化版本号的表示后,得出解决方案。package-lock.json
文件中,找出安装失败的依赖所有版本号,在前面加 ^
、~
符号或者删除版本号。
^
符号表示版本不升级,次版本、补丁版本升级到最新。^2.2.0 等价于 2.2.0 >= ^2.2.0 < 3.0.0。
~
符号只会升级补丁版本。例如:~2.2.0 等价于 2.2.0 >= ~2.2.0 <2.3.0。
删除版本号等于""
空符号表示更新到最新版本。
【解决示例】
1、加 ^ 符号
// 版本号前面加 ^ 符号
"node_modules/raphael": {
"version": "^2.2.0-c",
"license": "MIT",
"dependencies": {
"eve": "git://github.com/adobe-webplatform/eve.git#eef80ed"
}
},
...
"raphael": {
"version": "^2.2.0-c",
"requires": {
"eve": "git://github.com/adobe-webplatform/eve.git#eef80ed"
}
},
...
"tui-chart": {
"version": "3.11.3",
"requires": {
"core-js": "^3.6.4",
"raphael": "https://github.com/nhn/raphael.git#^2.2.0-c", //设置空版本号时记得把 # 也去掉
"tui-code-snippet": "^2.3.1"
},
"dependencies": {
"tui-code-snippet": {
"version": "2.3.3"
}
}
},
同理可得加~
符号…。
2、删除版本号
// 删除版本号
"node_modules/raphael": {
"version": "",
"license": "MIT",
"dependencies": {
"eve": "git://github.com/adobe-webplatform/eve.git#eef80ed"
}
},
...
"raphael": {
"version": "",
"requires": {
"eve": "git://github.com/adobe-webplatform/eve.git#eef80ed"
}
},
...
"tui-chart": {
"version": "3.11.3",
"requires": {
"core-js": "^3.6.4",
"raphael": "https://github.com/nhn/raphael.git", //设置空版本号时记得把 # 也去掉
"tui-code-snippet": "^2.3.1"
},
"dependencies": {
"tui-code-snippet": {
"version": "2.3.3"
}
}
},
原文地址:https://blog.csdn.net/zlting_/article/details/133637686
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_24448.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。