我使用sublime text 3
在OSX中编写我的python脚本。但是,每当我使用sublime text 3
创建新的python脚本时,它都会自动在Python2.7
中创建该文件。但我想使用Python 3.6
。这真的很烦人,破坏了我的工作进展......
有没有办法在sublime text 3
中更改Python的默认路径?感谢!
答案 0 :(得分:0)
在mac os终端类型:
$ which python3
在.sublime-build文件中添加json的cmd键的路径
答案 1 :(得分:0)
只是扩展先前所说的内容。
用which
命令找到Python3的路径后;
转到 工具->构建系统->新构建系统 ,然后将以下内容粘贴到文件中。
用您的python3路径替换 PATH_TO_YOUR_PYTHON3 并另存为“ Python3.sublime-build”。现在,应该使用Python3进行构建。
{
"cmd": ["PATH_TO_YOUR_PYTHON3", "-u", "$file"],
"file_regex": "^[ ]File \"(...?)\", line ([0-9]*)",
"selector": "source.python"
}