Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding
问题场景
win10 环境下执行 python -v
命令后报错,报错信息中含有如题字段文章来源:https://www.toymoban.com/news/detail-400463.html
解决方法
查询网络后得知原因是安装不同版本python的结果,解决方法如下:文章来源地址https://www.toymoban.com/news/detail-400463.html
- 通过windows系统卸载现有python软件;
- 删除环境变量
path
中现有python相关环境变量; - 重新安装python,记得勾选配置环境变量选项,这样,系统环境变量
path
会自动增加python安装路径; - 添加
PYTHONHOME
和PYTHONPATH
环境变量,路径为:path
变量中安装软件时自动配置的路径; - 重新打开cmd,执行
python -v
,可顺利进入python环境。
到了这里,关于Fatal Python error: init_fs_encoding: failed to get the Python codec of the filesystem encoding的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!