一:新建一个 Python3.7 编译环境。
1 Tools--Build System--New Build System...
修改前:
修改后:
内容:
python
{
"cmd":["C:\\Python\\Python37-32\\python.exe","-u","$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python",
"encoding": "utf-8" ,
"env": {"PYTHONIOENCODING": "utf8"},
"shell":"true"
}
Ctrl + s 保存
查看:
新建 一个 test.py 测试一下:
二:Anaconda 配置
2.1 Preferences--Package Settings --Anaconda--Settings - Default,使用 Ctrl+F 搜索"python_interpreter",修改成自己的 python.exe 路径,并保存。
修改前:
修改后:
2.2 Preferences--Package Settings --Anaconda--Settings - User,输入内容后保存。
内容:
python
{
"python_interpreter":"C:\\Python\\Python37-32\\python.exe",
"suppress_word_completions":true,
"suppress_explicit_completions":true,
"comlete_parameters":true,
"swallow_startup_errors":true,
"anaconda_linting":false
}
2.3 新建一个 test.py 测试
参考:
https://www.cnblogs.com/bjxsky/p/12718692.html
sublime教程以及python环境的配置(三)Anaconda插件_sublime安装没有ana-CSDN博客
sublime text 3 + Python anaconda插件自动补全功能配置_sublime python anaconda 自动补全 win10-CSDN博客