728x90
반응형
안녕하세요 다제입니다.
오늘은 python 오류 해결한 부분에 대해서 간단하게 포스팅 하려고 하는데요
파이썬을 실행했는데 갑자기 아래와 같은 오류가 발생되었습니다..
<오류 코드>
Python 3.9.7 (default, Sep 16 2021, 16:59:28) [MSC v.1916 64 bit (AMD64)] :: Anaconda, Inc. on win32
Type "help", "copyright", "credits" or "license" for more information.
Failed calling sys.__interactivehook__
File "C:\Users\mindslab\anaconda3\lib\site.py", line 449, in register_readline
File "C:\Users\mindslab\anaconda3\lib\site-packages\pyreadline\rlmain.py", line 165, in read_history_file
self.mode._history.read_history_file(filename)
File "C:\Users\mindslab\anaconda3\lib\site-packages\pyreadline\lineeditor\history.py", line 82, in read_history_file
for line in open(filename, 'r'):
UnicodeDecodeError: 'cp949' codec can't decode byte 0x92 in position 441: illegal multibyte sequence
터미널에서 파이썬을 실행하면 위와 같은 오류가 발생하였습니다.
갑자기 왜 이런 오류가 발생되었는지 모르겠지만, 일단 해결을 해야해서
"C:\Users\mindslab\anaconda3\lib\site-packages\pyreadline\lineeditor\history.py"에 들어가서
아래와 같이 입력하고 오류가 바로 해결되었다.
<해결 코드>
for line in open(filename, 'r') -> for line in open(filename, 'r', encoding="utf-8")
여러분도 혹시 이런 일이 발생되면 한번 해보세요~
감사합니다.
728x90
반응형
'Code > 기타' 카테고리의 다른 글
용어 정리 (0) | 2022.04.15 |
---|---|
자주 사용하는 맥북 단축키(feat. MAC M1 shortcut) (0) | 2022.04.12 |
정규식 파해쳐보기 (0) | 2022.02.13 |
윈도우에서 개발환경 세팅하기(feat. Linux, ubuntu, powershell) (0) | 2022.01.23 |
Proxy Server 란 무엇인가? (feat. 프로시 서버) (0) | 2021.12.08 |