如何 运行 在后台使用 tqdm 的脚本
how to run a script with tqdm in background
这是一个使用 tqdm
进度条的简单脚本:
from tqdm import tqdm
from time import sleep
for i in tqdm(range(10000)):
sleep(1)
有时我想让它在我的服务器上 运行 然后退出。自然地,在那些情况下我对看到进度条不是很感兴趣。我这样做:
$ python mytest.py &
$ disown
$ exit
但是一旦我退出,进程就停止了。为什么会发生这种情况以及如何处理?
这是一个使用 tqdm
进度条的简单脚本:
from tqdm import tqdm
from time import sleep
for i in tqdm(range(10000)):
sleep(1)
有时我想让它在我的服务器上 运行 然后退出。自然地,在那些情况下我对看到进度条不是很感兴趣。我这样做:
$ python mytest.py &
$ disown
$ exit
但是一旦我退出,进程就停止了。为什么会发生这种情况以及如何处理?