python35&&python27在windows启动时报错解决方案

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python35&&python27在windows启动时报错解决方案相关的知识,希望对你有一定的参考价值。

cmd>python3

 Fatal Python error: Py_Initialize: unable to load the file system codec
ImportError: No module named ‘encodings‘

Current thread 0x00001f28 (most recent call first): 
 
cmd>python2
No modules named XX
 
技术分享
 
原因:环境变量更改后造成的问题。需要修改环境变量增加一些路径:
 
%python35%
D:\Program Files\Python35\Scripts\;D:\Program Files\Python35\;D:\Program Files\Python35\Lib;D:\Program Files\Python35\Lib\site-packages;D:\Program Files\Python35\DLLs
 
%python27%
D:\Program Files\Python27\;D:\Program Files\Python27\Scripts;D:\Program Files\Python27\Lib;D:\Program Files\Python27\Lib\site-packages;D:\Program Files\Python27\DLLs
 
在环境变量中增加之后完美生效

以上是关于python35&&python27在windows启动时报错解决方案的主要内容,如果未能解决你的问题,请参考以下文章

python2.7入门---break语句&continue语句&pass空语句

同时安装Python2 & Python3 cmd下版本自由选择的方法

python&linux pip 总是尝试使用 python2.7 而不是 3.4

python2.7入门---变量类型&案例

Win64环境 python2.7 pykafka 环境解决&读写实例

python2.7入门---循环语句(for&嵌套循环)