- centos7 安装nodejs
curl --silent --location https://rpm.nodesource.com/setup_12.x | bash -
sudo yum remove -y nodejs npm //移除旧版本
yum install -y nodejs
- 安装pm2
npm install pm2 -g
- 使用pm2
pm2 start 'jupyter notebook' --name 'jupyter-notebook'
pm2 list