python报错——Fatal Python error: init_sys_streams: can't initialize sys standard streams 致命错误...

明明运行的是另外的脚本,但是报了这个错,还是个致命错误。。。

Fatal Python error: init_sys_streams: can't initialize sys standard streams
Traceback (most recent call last):
  File "C:\Program Files\Python37\lib\io.py", line 72, in 
AttributeError: module 'abc' has no attribute 'ABCMeta'

实际上这里是模块名称重复,我的项目里有个abc.py的文件,把它改成别的名称就可以了

你可能感兴趣的:(Python报错)