linux常用环境配置
nvm
用于管理不同版本node
node版本管理工具
nvm install 18 #安装
nvm uninstall 18 #卸载
nvm use 18 #使用
nvm ls #查看当前有的node版本
nvm ls-remote #列出所有可用的node版本
pyenv
在linux中管理多版本 python
常用命令:
pyenv install 3.8.12
pyenv global 3.8.12
pyenv local 3.8.12
pyenv versions
supervisor
linux中管理进程
1.安装
apt install supervisor
#启动
systemctl start supervisor
# 开机自启
systemctl enable supervisor
# 查看状态
systemctl status supervisor
#修改完配置文件
supervisorctl reread
supervisorctl update
supervisorctl restart all
在配置好后启动可能会遇到用户组不对,或制定了用户组后,依然找不到对应的pip包,可以在配置文件中使用python3命令时,带上完整路径