环境: Windows10
用管理员权限运行cmd或者git bash
choco install python3
然后打开sublime,
新建编译系统
输入
{
"cmd": ["C:/Python38/python.exe","$file"], // 相当于在CMD中运行python.exe test.py
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python",
"env": {"PYTHONIOENCODING": "utf8"}, //通过这句,使编码一致,都是utf8, windows中文版容易出现默认python encoding是gbk的问题
}
然后保存为python3.sublime_build
运行的时候选择编译系统为python3即可.
我个人建议无论新手还是老手, 都学习和尽量使用Python最新版. 我现在系统的默认python指向的是python3.8
网友评论