解决nohup重定向python输出到文件不成功的问题

作者:jodies 时间:2024-01-01 08:24:03 

原因是:


It looks like you need to flush stdout periodically (e.g. sys.stdout.flush()). In my testing Python doesn't automatically do this even with print until the program exits.
You can run Python with the -u flag to avoid output buffering

所以,

解决办法之一:加-u


nohup python -u Bilstm-My-Exp-Char.py --training 1 --char_base 1 --window 5 --rnn_active relu --data_root ../../wangzhen/bilstm/ --load_embed 1 --model_pkl mdl5-15-14-30 > 5.txt 2>&1 &

解决办法之二: sys.stdout.flush()

来源:https://blog.csdn.net/jolinxia/article/details/51419161

标签:python,重定向,文件,nohup
0
投稿

猜你喜欢

  • 网页特效文字之—银箔字

    2013-08-07 00:21:39
  • 一文搞懂JSON(JavaScript Object Notation)

    2024-04-10 10:58:22
  • CTF中的PHP特性函数解析之下篇

    2023-06-14 09:54:52
  • Windows10下mysql 8.0.19 安装配置方法图文教程

    2024-01-21 06:33:27
  • 并发环境下mysql插入检查方案

    2024-01-27 00:59:09
  • Python中层次聚类的详细讲解

    2022-07-02 06:07:13
  • Python使用正则表达式抓取网页图片的方法示例

    2022-11-29 04:11:35
  • Python3标准库之dbm UNIX键-值数据库问题

    2024-01-26 15:56:11
  • python二维图制作的实例代码

    2021-09-17 21:29:35
  • 带你从内存的角度看Python中的变量

    2021-02-13 13:27:50
  • Python集成学习之Blending算法详解

    2022-09-28 04:31:35
  • django-allauth入门学习和使用详解

    2022-05-24 12:36:09
  • python通过txt文件批量安装依赖包的实现步骤

    2022-05-10 23:26:14
  • Python matplotlib seaborn绘图教程详解

    2021-03-12 03:23:07
  • Python中的变量及简单数据类型应用

    2021-06-13 09:45:26
  • ASP伪静态页简单教程

    2007-09-28 14:35:00
  • electron-builder打包配置详解

    2024-04-17 10:24:54
  • Python3 模块、包调用&路径详解

    2021-06-04 06:03:08
  • python实现邮件发送功能

    2023-10-11 02:27:09
  • python字符串的index和find的区别详解

    2022-09-17 17:58:47
  • asp之家 网络编程 m.aspxhome.com