Trouble/Python, Pytorch

PyCharm 사용시, module 'io' has no attribute 'OpenWrapper' 문제

침닦는수건 2022. 12. 28. 11:53
반응형

열심히 코딩하던 중 다음과 같은 오류가 나면서 파이참이 멈췄다.

Fatal Python error: init_sys_streams: can't initialize sys standard streams
Python runtime state: core initialized
AttributeError: module 'io' has no attribute 'OpenWrapper'

Current thread 0x00007fcc72266740 (most recent call first):
<no Python frame>

 

구글링했을 때 PYTHONPATH가 어쩌구 저쩌구 나오는데 원인은 단순하다.

 

현재 프로젝트 내에 io 라는 이름의 폴더나 파일이 있기 때문이다. 해당 파일을 Refactor 해주면 간단히 해결된다.

 

한참 시간 쓴게 허무하다.

반응형