已解决ModuleNotFoundError: No module named codecs
报错问题
之前在工作中遇到过这个坑,记录一下问题以及解决方法,不一定针对所有情况都能用,但是可以供大家参考。
问题描述如下:
Fatal Python error: Py_Initialize: unable to load the file system codec
Traceback (most recent call last):
File “f:\program files\python\python36\lib\encodings_init_.py”, line 31, in
ModuleNotFoundError: No module named ‘codecs’
模块未找到错误:没有命名为“codecs”的模块
解决方法
在系统环境变量内添加路径
PYTHONPATH
F:/Program Files/Python/Python36/Lib
PS
有问题评论区留言即可