1、安装python
选择个性化安装并添加python到环境变量,
验证python环境
在cmd中输入python
确定python安装路径
在cmd中输入where python
2、sublime安装
配置python
在sublime中依次点击Tools--Build System--New Build System...
将默认的untitled.sublime-build
{
"shell_cmd": "make"
}
{
"cmd": ["C:\\Python38\\python.exe", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"quiet": true
}
选择个性化安装并添加python到环境变量,
验证python环境
在cmd中输入python
确定python安装路径
在cmd中输入where python
2、sublime安装
配置python
在sublime中依次点击Tools--Build System--New Build System...
将默认的untitled.sublime-build
{
"shell_cmd": "make"
}
修改为
"cmd": ["C:\\Python38\\python.exe", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"quiet": true
}
名称保存为python38.sublime-build,路径默认
"C:\\Python38\\python.exe"也可以变更为"C:/Python38/python.exe"
Package Control是 Sublime Text软件包管理器
sublime通过安装package control来管理和安装插件,比如python的一些语法提示或者语法高亮等,都是通过package control来安装的
安装package control
方法一
Preferences > Package Control
方法二
打开命令面板 Win/Linux:ctrl+shift+p,Mac:cmd+shift+p
键入Install Package Control,然后按enter
关闭命令面板 esc
安装插件
ctrl+shift+p > 输入install选择Package Control:Install Package >
predawn
material theme
anaconda
BracketHighlighter
格式后代码
Ctrl + A 选中代码,再Ctrl + S
评论
发表评论