如何更改 Sublime text 3 中的默认 Python 解释器
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/23903415/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
How to change the default Python interpreter in Sublime text 3
提问by user3682213
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.
我目前正在为我的项目使用 Anaconda python 发行版(不是 anaconda 插件,它们具有相同的名称,但我使用的包括 Numpy、IPython 等。这有点令人困惑)。所以我想将默认的 python (v3.3) 更改为 Anaconda (v2.7.6) 中的那个,在这种情况下,我将能够使用嵌入在 Anaconda 中的库。我试图在工具> 构建系统> 新构建系统下放置一个新脚本。
{
"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:
但是它失败了,sublime 仍然使用默认解释器:
>>>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']
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 解释器更改为我想要的;
回答by Daniel Rasmuson
You can get it working by distinguishing the name of python.
您可以通过区分python的名称来使其工作。
For example change
例如改变
C:\Python27\python.exe
to
到
C:\Python27\python2.exe
Change your environment variables to reference this change. Type python2 in cmd to confirm its working.
更改您的环境变量以引用此更改。在 cmd 中输入 python2 以确认其工作。
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"
}