我正在尝试重新启动在Ubuntu中运行gunicorn应用程序的主管。但是当我运行sudo supervisorctl status
时会出现错误:BACKOFF can't find command 'gunicorn
。 (我没有使用虚拟环境)。该如何解决?
[program:myapp]
directory=/home/IOT-ML_API/ml-api
command=gunicorn -t 500 -w 10 app:app -b localhost:8000 &
autostart=True