编程58--代码share&debug17IOError: [Errno 5] Input/output error 问题解决
Posted 呆呆象呆呆
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了编程58--代码share&debug17IOError: [Errno 5] Input/output error 问题解决相关的知识,希望对你有一定的参考价值。
问题Bug
IOError: [Errno 5] Input/output error
问题原因
后经过排查找到了问题,这是因为我在程序中有 print
语句,当我把远程 ssh 退出后,就相当于把它的 shell 关闭了,没有了 shell 的进程 print
就没有地方输出字符,不能“写”到屏幕上了,所以就会报一个 I/O
错误
解决方案
使用后台运行,将输出重定向到除屏幕以外的文件作为日志
具体实现可以看一下这一篇blog
【Linux系统理论操作学习26】LInux的后台运行,重定向输出,前后台进程转换和管理
Last、参考文献
关于python:python – 防止IOError:[Errno 5]在没有stdout的情况下运行时输入/输出错误 | 码农家园
python2.7出现IOError: [Errno 5] Input/output error_微电子学与固体电子学-CSDN博客
python3 报错 [Errno 5] Input/output error 没有stdout时使用了print_whatday的专栏-CSDN博客
Python IOError: [Errno 5] Input/output error? - Stack Overflow
以上是关于编程58--代码share&debug17IOError: [Errno 5] Input/output error 问题解决的主要内容,如果未能解决你的问题,请参考以下文章