Python 运行 关闭 vm 后没有 nohup 文件的脚本

Python run script after closing vm without nohup file

我正在尝试 运行 我的 python 脚本在关闭我的 VM 后永久运行

我正在使用:

nohup python3 myscript.py &

我的问题是,我创建了输出文件 nohup,该文件在 2 天后使用了我所有的 VM 内存。 有没有办法在没有 nohup 文件和我的内存问题的情况下永远 运行 我的脚本?

你可以做到这一点。

nohup python3 myscript.py > /dev/null &