标签: python slurm
我正在SLURM上运行python程序,只有在运行完成后才能获得print语句。我想在运行期间将print语句保存在输出文件中。
我尝试了this link的解决方案,但在我的情况下不起作用。一种解决方案是使用sys.stdout.write()而不是print(),另一种解决方案是使用-u选项启动python解释器。我正在使用python 2.7。有没有人有任何想法?
sys.stdout.write()
print()
-u