linx python nohup
时间: 2023-08-19 16:08:53 浏览: 100
python脚本后台执行方式
您好!对于在 Linux 上使用 Python 运行 nohup 的问题,您可以使用以下命令:
```
nohup python your_script.py &
```
这将在后台运行名为 `your_script.py` 的 Python 脚本,并将输出重定向到 `nohup.out` 文件中。通过添加 `&` 符号,可以使脚本在后台运行。
请注意,这种方式只适用于 Linux 系统。
阅读全文