我是 node.js 新手,我想在 ubuntu 上安装 forever。但不幸的是,它给了我一个错误。如图所示:
[1
答案1
我按照以下方法遇到了同样的问题本教程安装 NodeJS。
通过安装较新的 NodeJS,我可以让它工作。
按着这些次序:
- 卸载 NodeJS:
sudo apt purge nodejs
sudo apt autoremove
- 安装 curl 以下载最新的 NodeJS 设置:
sudo apt-get install curl
- 查看https://nodejs.org/查看最新的 LTS 版本。
- 下载它:(
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
将“12”替换为当前 LTS 主版本号)。 - 安装 NodeJS(包括 npm):
sudo apt-get install nodejs
- 永久安装:
sudo npm install forever -g