本文介绍了我安装了 python 2.7 和 3.5,但是 python 3.5 不能正常工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在终端中,我可以成功运行py -2
.尽管如此,
In terminal, I can run py -2
successfully.Nevertheless,
C:\Users\user>py -3
Fatal Python error: Py_Initialize: unable to load the file system codec
File "C:\Python27\lib\encodings\__init__.py", line 123
raise CodecRegistryError,\
^
SyntaxError: invalid syntax
Current thread 0x00004570 (most recent call first):
推荐答案
删除PYTHONHOME"环境变量.(这解决了我安装 python27 x86 和 python36 x64 时的问题)
Remove the "PYTHONHOME" environmental variable.(This resolved my problem when installed python27 x86 and python36 x64)
这篇关于我安装了 python 2.7 和 3.5,但是 python 3.5 不能正常工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!