解决方法
使用forever.js很容易使用Python:
forever start -c python python_script.py
与virtualenv一起使用它有点复杂,我使用bash脚本(称为python_virtualenv):
#!/bin/bash # Script to run a Python file using the local virtualenv source bin/activate bin/python $@
现在使用该脚本永远:
forever start -c ./python_virtualenv python_script.py