supervisor 指定 python 版本

big_cat發表於2022-04-17
pkg_resources.DistributionNotFound: The 'supervisor==3.4.0' distribution was not found and is required by the application

有時系統安裝了 python3python2,且 python3 為預設版本,安裝啟動 supervisor 時就報錯了。

yum install supervisor

編輯以下3個檔案,將開頭的 python 直譯器路徑指定為 2 版本的即可。

vim /usr/bin/echo_supervisord_conf
vim /usr/bin/supervisorctl
vim /usr/bin/supervisord

啟動

systemctl start supervisord.service

相關文章