【笔记】internal/modules/cjs/loader.js:985 throw err; ^ Error: Cannot find module ‘node:util‘

[root@localhost usr]# cnpm -v

internal/modules/cjs/loader.js:985
throw err;
^

Error: Cannot find module ‘node:util’
Require stack:

  • /usr/local/node/lib/node_modules/cnpm/bin/cnpm
    at Function.Module._resolveFilename (internal/modules/cjs/loader.js:982:15)
    at Function.Module._load (internal/modules/cjs/loader.js:864:27)
    at Module.require (internal/modules/cjs/loader.js:1044:19)
    at require (internal/modules/cjs/helpers.js:77:18)
    at Object. (/usr/local/node/lib/node_modules/cnpm/bin/cnpm:3:15)
    at Module._compile (internal/modules/cjs/loader.js:1158:30)
    at Object.Module._extensions…js (internal/modules/cjs/loader.js:1178:10)
    at Module.load (internal/modules/cjs/loader.js:1002:32)
    at Function.Module._load (internal/modules/cjs/loader.js:901:14)
    at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:74:12) {
    code: ‘MODULE_NOT_FOUND’,
    requireStack: [ ‘/usr/local/node/lib/node_modules/cnpm/bin/cnpm’ ]
    }

npm和cnpm的版本不匹配,需要匹配版本(记得先删除之前的):

npm uninstall cnpm

当前npm版本:

[root@localhost ~]# npm -v
6.13.4

全局安装cnpm指定版本:

[root@localhost ~]# npm install -g [email protected] --registry=https://registry.npm.taobao.org

npm WARN deprecated [email protected]: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.
npm WARN deprecated [email protected]: request has been deprecated, see https://github.com/request/request/issues/3142
npm WARN deprecated [email protected]: this library is no longer supported
/usr/local/node/bin/cnpm -> /usr/local/node/lib/node_modules/cnpm/bin/cnpm

  • [email protected]
    added 726 packages from 978 contributors in 8.573s
    [root@localhost ~]#

查看cnpm的版本:

[root@localhost ~]# cnpm -v

如下即为成功:

[email protected] (/usr/local/node/lib/node_modules/cnpm/lib/parse_argv.js)
[email protected] (/usr/local/node/lib/node_modules/cnpm/node_modules/npm/lib/npm.js)
[email protected] (/usr/local/node/bin/node)
[email protected] (/usr/local/node/lib/node_modules/cnpm/node_modules/npminstall/lib/index.js)
prefix=/usr/local/node 
linux arm64 5.11.12-300.el8.aarch64 
registry=https://registry.npm.taobao.org

猜你喜欢

转载自blog.csdn.net/qq_41619841/article/details/129869658