Python path configuration: PYTHONHOME = 'F:\' PYTHONPATH = (not set) program name = 'python' isolated = 0 environment = 1 user site = 1 import site = 1 sys._base_executable = 'F:\\python.exe' sys.base_prefix = 'F:\\' sys.base_exec_prefix = 'F:\\' sys.platlibdir = 'lib' sys.executable = 'F:\\python.exe' sys.prefix = 'F:\\' sys.exec_prefix = 'F:\\' sys.path = [ 'F:\\python39.zip', 'F:\\\\DLLs', 'F:\\\\lib', 'F:', ] 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 0x00001574 (most recent call first):
时间: 2023-12-06 22:40:51 浏览: 668
这个错误提示是 Python 解释器在启动时出现了问题,因为它无法获取文件系统编码的 Python 编解码器模块。可能的原因是您的 Python 安装文件损坏或缺失了某些重要的文件。您可以尝试重新安装 Python 或者尝试在 Python 安装目录下寻找 encodings 模块并将其添加到 sys.path 中。
阅读全文
相关推荐


















