supervisor 启动错误日志显示是找不到opencv模块:ModuleNotFoundError: No module named 'cv2'
supervisor 配置文件:
[program: webapp]
dirctory = /home/www/web/
command =python3 manager.py runserver 8000
autostart = true
autorestart = true
stdout_logfile = /var/log/supervisor/supervisord_web.log
stderr_logfile = /var/log/supervisor/weba_err.log
user=root
解决办法
因为root用户下,pip3没有安装相应的模块。 使用 user 用户。