码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2016-03-16 12:25:22      阅读:955      评论:0      收藏:0      [点我收藏+]

标签:

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启动时报错解决方案

标签:

原文地址:http://www.cnblogs.com/songqingbo/p/5282887.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!