如何在Sublime文本3中更改默认的Python解释器 [英] How to change the default Python interpreter in Sublime text 3

查看:93
本文介绍了如何在Sublime文本3中更改默认的Python解释器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我目前正在为我的项目使用Anaconda python发行版(不是anaconda插件,它们具有相同的名称,但是我使用的是Numpy,IPython等,这有点令人困惑).因此,我想将默认python(v3.3)更改为Anaconda(v2.7.6)中的python,在这种情况下,我将能够使用Anaconda中嵌入的库.我试图在工具">构建系统">新构建系统"下放置一个新脚本.

I am currently using the Anaconda python distribution for my project (NOT the anaconda plugin, they have the same name, but the one I am using includes Numpy, IPython, etc. It is kinda confusing). So I want to change the default python (v3.3) to the one in Anaconda (v2.7.6), in that case I will be able to use the libraries embedded in Anaconda. I tried to put a new script under Tool > Build System > New Build System.

{
"path": "/home/username/anaconda/bin",
"cmd": ["python", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python"
}

但是失败了,崇高仍然使用默认的解释器:

But it failed, the sublime is still using the default interpreter:

>>>print (sys.version)
3.3.0 (default, Jun 12 2013, 17:01:35) 
[GCC 4.7.2]
>>> print (sys.executable)
python3
>>> print (sys.path)
['/opt/sublime_text', '/opt/sublime_text/python3.3.zip', '/home/username/.config/sublime-text-3/Packages']

所以我的问题很简单(但对于一个不认识的人来说足够困难): 如何将这个默认的python解释器更改为我想要的;

So my question is quite simple (but hard enough for one who doesn't know): How to change this default python interpreter to the one I want;

推荐答案

您可以通过区分python名称来使其工作.

You can get it working by distinguishing the name of python.

例如更改

C:\Python27\python.exe 

C:\Python27\python2.exe

更改环境变量以引用此更改.在cmd中输入python2确认其工作.

Change your environment variables to reference this change. Type python2 in cmd to confirm its working.

然后您应该可以从构建热键中引用它.

And then you should be able to reference this from your build hotkey.

{
"path": "/home/username/anaconda/bin",
"cmd": ["python2", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python"
}

这篇关于如何在Sublime文本3中更改默认的Python解释器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆