Python使用虚拟环境
python3 -m venv /path/to/new/virtual/environment
使用supervisor启动虚拟环境的进程
1.创建sh文件
#! /bin/bash
cd /home/wwwroot/Venv
source bin/activate
cd TensorFlow-Server
exec python3 app.py
2./etc/supervisord.d新增配置ini文件
[program:TensorFlow-Server]
command=sh startTf.sh
directory=/home/wwwroot/Venv
user=root
stopsignal=INT
autostart=true
autorestart=true
startsecs=1
stderr_logfile=/home/log/TensorFlow-Server.err.log