C:\Windows\System32>npm install oracledb@version --save npm ERR! code ETARGET npm ERR! notarget No matching version found for oracledb@version. 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: E:\NodeJs\node_cache\_logs\2023-06-05T14_04_01_380Z-debug-0.log
时间: 2023-11-03 10:21:40 浏览: 125
npx-card:我的 npm 卡
在这个命令中,您需要将`version`替换为您要安装的实际版本号。请注意,您需要将其替换为实际版本号,而不是字面上的字符串“version”。
例如,如果您要安装版本为4.2.0的oracledb包,请使用以下命令:
```
npm install oracledb@4.2.0 --save
```
请注意,在这个命令中,`4.2.0`是您要安装的实际版本号,而不是字面上的字符串“version”。
阅读全文