無法使用新使用者運行節點命令

無法使用新使用者運行節點命令

我有兩個用戶:一個是老用戶,一個是新用戶。我的舊用戶和新用戶都可以運行節點。但突然間,對於我的新用戶,每當我輸入與節點相關的任何命令時,我都會收到下面複製的相同錯誤。

/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

請幫助我。是的,節點命令仍然適用於我的舊用戶。

答案1

節點是目前所有受支援的 Ubuntu 版本中 Node.js snap 套件的名稱。例如,要檢查您的節點版本類型:

$節點-v

若要消除問題中的錯誤訊息,請以新使用者身分登入並執行以下命令以啟用 npm 更新檢查:

sudo chown -R $USER:$(id -gn $USER) /home/您的使用者名稱/.config

代替 your-username在上面的命令中使用您自己的用戶名。

相關內容