Windows中Python3.7的主管(或类似工具)

问题描述 投票:0回答:1

我使用Supervisor for ubuntu非常简单易用。但是现在我想在Windows机器上持久执行python脚本。

我尝试使用以下命令安装supervisor

pip install supervisor

但得到以下错误

Supervisor requires Python 2.4 or later but does not work on any version of 
Python 3.  You are using version 3.7.2 (tags/v3.7.2:9a3ffc0492, Dec 23 2018, 
23:09:28) [MSC v.1916 64 bit (AMD64)].  Please install using a supported 
version.

有没有办法在python 3.7.2上安装supervisor?或者Windows中有替代解决方案吗?

python python-3.x devops supervisord supervisor
1个回答
1
投票

如果性能是您的目标,您只需在新脚本中导入脚本并运行第二个脚本即可。 Python会自动将所有导入的脚本转换为.pyc,这是一个预编译版本。所以在第一次使用.pyc文件之后。不需要外部模块。或者你有不同的理由使用主管?

© www.soinside.com 2019 - 2024. All rights reserved.