当我运行 .js 代码时,出现如下错误:
SyntaxError: Unexpected token <
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
我尝试使用以下方法升级 nodejs:
curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash -
然后它告诉我“curl:未找到命令”
我需要一些帮助。
答案1
要安装curl
,请运行:
sudo apt update
sudo apt install curl
或者您也可以使用wget
,但我不确定等效的选项是什么。