欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python pandas 报错 fileno 解决办法

程序员文章站 2022-05-26 15:13:45
...

刚接触python科学计算包pandas, 生成随机序列 pd.Series(np.random.randn(5)),出现问题AttributeError: 'NoneType' object has no attribute 'fileno'

查了好久,终于解决了,但还是不太清楚背后原理。特此记录,方便后来者查询。


解决方案:

将lib目录下shutil.py文件中的sys.__stdout__ 改成 sys.stdout。

相关标签: python pandas