Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding
"Windows embeddable package"로 구성한 파이썬 환경에서 실행 시 이런 오류가 발생한다면?
C:\python310> python
Python path configuration:
PYTHONHOME = (not set)
PYTHONPATH = (not set)
program name = 'python'
isolated = 1
environment = 1
user site = 1
import site = 0
sys._base_executable = 'C:\\python310\\python.exe'
sys.base_prefix = 'C:\\python310'
sys.base_exec_prefix = 'C:\\python310'
sys.platlibdir = 'lib'
sys.executable = 'C:\\python310\\python.exe'
sys.prefix = 'C:\\python310'
sys.exec_prefix = 'C:\\python310'
sys.path = [
'C:\\python310\\python310.zip',
'C:\\python310',
'C:\\python310\\Lib\\site-packages',
]
Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding
Python runtime state: core initialized
ModuleNotFoundError: No module named 'encodings'
Current thread 0x000081ec (most recent call first):
<no Python frame>
아마도 다른 여러 가지 이유가 있을 수 있겠지만,
Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding
; https://discuss.python.org/t/fatal-python-error-init-fs-encoding-failed-to-get-the-python-codec-of-the-filesystem-encoding/3173/1
제 경우에는, 오류 메시지의 "sys.path"에 있는 c:\python310\python310.zip 파일을 (필요가 없을 것 같아) 무심코 지웠더니 그런 오류가 발생했습니다. 실제로 해당 zip 파일에는 파이썬의 (오류 메시지의 encoding 모듈을 비롯) 기본 패키지들이 포함돼 있기 때문에 삭제하시면 안 됩니다. ^^
[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]