我有两个用户:一个是老用户,另一个是新用户。我的老用户和新用户都可以运行节点。但是突然间,对于我的新用户,每当我输入与节点相关的任何命令时,我都会收到下面复制的相同错误。
/usr/local/lib/node_modules/npm/bin/npm-cli.js:79
let notifier = require('update-notifier')({pkg})
^^^
SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode
at exports.runInThisContext (vm.js:53:16)
at Module._compile (module.js:374:25)
at Object.Module._extensions..js (module.js:417:10)
at Module.load (module.js:344:32)
at Function.Module._load (module.js:301:12)
at Function.Module.runMain (module.js:442:10)
at startup (node.js:136:18)
at node.js:966:3
请大家帮帮我。是的,node 命令仍然对我的老用户有效。
答案1
节点是当前所有支持的 Ubuntu 版本中 Node.js snap 包的名称。例如,要检查您的节点版本,请输入:
$节点-v
要消除问题中的错误消息,请以新用户身份登录并运行以下命令以启用 npm 更新检查:
sudo chown -R $USER:$(id -gn $USER) /home/您的用户名/.config
代替 your-username
在上面的命令中使用您自己的用户名。