安装
通过package control --> install package --> sublimeREPL
info
Python: 直接一个python界面,可用来做简单测试
Python-RUN current file: 运行当前python文件
Python-PDB current file: 调试当前python文件
Python-IPython: 通过IPython shell 交互式运行当前python文件
更改python路径(可选)
由于默认的python路径并不是我想使用的python路径,其默认路径需要被修改为我常用的python路径
- 查找想要的conda虚拟环境的python完整路径
- Open a terminal window.
- run
conda activate your-environment-name.
- Run
which python
复制显示的路径结果,类似于/home/username/anaconda3/envs/env_name/bin/python
- 找到路径文件
Preferences --> Browse Packages,
在跳出的文件夹中打开SublimeREPL --> config --> Python --> Main.sublime-menu -
修改路径文件
把每一个“cmd”后方括号中的“Python”修改为第一步中复制的路径, 保存Main.sublime-menu文件
-
回到sublime text窗口, Tools --> SublimeREPL --> Python --> Python
创建快捷键
Preferences --> Key Bindings, 在右侧的空白栏输入下面的代码, F5 和 F8可按照自己喜好更改,但要确保和已定的不重复, 输入后保存,关闭sublime-keymap文件。
[
{
"keys": ["f5"],
"caption": "SublimeREPL: Python - RUN current file",
"command": "run_existing_window_command",
"args": {
"id": "repl_python_run",
"file": "config/Python/Main.sublime-menu"}
},
{
"keys": ["f8"],
"caption": "SublimeREPL: Python - PDB current file",
"command": "run_existing_window_command",
"args": {
"id": "repl_python_pdb",
"file": "config/Python/Main.sublime-menu"}
},
]
之后想要直接运行当前文件,按F5就可以了~