美文网首页
Sublime Text 3 搭建Anaconda编译环境(20

Sublime Text 3 搭建Anaconda编译环境(20

作者: KangSmit的算法那些事儿 | 来源:发表于2020-04-17 10:22 被阅读0次

前提:
别忘了新建一个编译系统:

{"cmd": ["你的anaconda位置/python.exe","-u","$file"], 
"file_regex": "^[ ]*File \"(...?)\", line ([0-9]*)",
"selector": "source.python",
}

一、下载 package control,Ctrl+打开console,在白条框中键入:
import urllib.request,os; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); open(os.path.join(ipp, pf), 'wb').write(urllib.request.urlopen( 'http://sublime.wbond.net/' + pf.replace(' ','%20')).read())

二、ctrl+shif+p -->install packages-->anaconda:
设置如下:安装Anaconda插件完成之后,会看到如下选项栏,说明Anaconda安装成功。

由于Anaconda插件本身无法知道Python安装的路径,所以需要设置Python主程序的实际位置。

选择Settings-Default选项,搜寻“python_interpreter” key,并键入python主程序的磁盘位置。

然后还要在user里设置下


image.png

把下面的语句放入settings—user中

{"python_interpreter":"C:\\Anaconda3\\python.exe","suppress_word_completions":true,"suppress_explicit_completions":true,"complete_parameteers":true,"anaconda_linting":false
}

参考文献

相关文章

网友评论

      本文标题:Sublime Text 3 搭建Anaconda编译环境(20

      本文链接:https://www.haomeiwen.com/subject/lexevhtx.html