一
先在官网 https://www.anaconda.com/下载anaconda软件并配置好,具体的操作百度和csdn已经有一大堆教程,这里我也就不废话了。
二
在腾讯电脑管家或者百度自行下载sublime text3 并安装好Package Control
(已经安装的可以直接看第三步)
- 这是sublime官网,点击自行下载自己喜欢的版本sublime text
因为sublime的软件源是国外的,所以下载很慢,建议到百度自行搜索安装。比官网快多了。 - 安装完sublime .打开sublime并用ctrl+`(~)
~(`)键是tab键上面的那个的那个波浪符号的键
打开sublime 的控制台,输入以下命令 ## sublime text3用户
`import urllib.request,os,hashlib; h = '6f4c264a24d933ce70df5dedcf1dcaee' + 'ebe013ee18cced0ef93d5f746d80ef60'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); by = urllib.request.urlopen( 'http://packagecontrol.io/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); print('Error validating download (got %s instead of %s), please try manual install' % (dh, h)) if dh != h else open(os.path.join( ipp, pf), 'wb' ).write(by)`
sublime text2用户
import urllib2,os,hashlib; h = '6f4c264a24d933ce70df5dedcf1dcaee' + 'ebe013ee18cced0ef93d5f746d80ef60'; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); os.makedirs( ipp ) if not os.path.exists(ipp) else None; urllib2.install_opener( urllib2.build_opener( urllib2.ProxyHandler()) ); by = urllib2.urlopen( 'http://packagecontrol.io/' + pf.replace(' ', '%20')).read(); dh = hashlib.sha256(by).hexdigest(); open( os.path.join( ipp, pf), 'wb' ).write(by) if dh == h else None; print('Error validating download (got %s instead of %s), please try manual install' % (dh, h) if dh != h else 'Please restart Sublime Text to finish installation')
输入完成后按下回车,可以回等很久,这时候,你可以去喝杯咖啡,等待他安装完成后,在Preferences标签下可以看到Packages Control说明安装成功
三
- Packages Contorl安装后,在sublime 下,以此打开Preferences–Packages Control后,会弹出控制台,向输入install package,等待些许时间后,在弹出的输入框里输入anaconda并选中,回车,等待安装。 安装成功后,可以在Preferences–Packages Settings 看到anaconda的身影。如图所示
- 接着 Preferences–Packages Settings --anaconda–Settings-Default,在其中按ctrl+f寻找名为“python_interpreter ”标签,并将其路径改为你python.exe的路径,是python.exe是路径,不是python.exe的所在路径。接下来你就可以愉快的使用你的sublime学习你的python了。
- 不过。现在anaconda的一些功能我们用不到,我们可以将他关闭掉。 按 Preferences–Packages Settings --anaconda–Settings-User打开,并输入以下配置
{
“suppress_word_completions”: true,
“suppress_explicit_completions”: true,
“complete_parameters”: false,
//“anaconda_linter_phantoms”: true,
“pyflakes_explicit_ignore”:
[
// “Redefined”,
“UnusedImport”
// “UndefinedName”,
// “UndefinedLocal”,
// “UnusedVariable,”,
// “UndefinedExport”,
// “DuplicateArgument”,
// “RedefinedWhileUnused”
],
“anaconda_linting_behaviour”: “save-only”,
“anaconda_linting”: false
}
其中 “anaconda_linting”: false 设置为False是因为sublime每次保存后,代码都会由一个白色框框包裹着,我看着不是很习惯,所以,我关闭了它。
以上配置我的参考https://blog.csdn.net/qq_35296537/article/details/89067245这篇文章
参考文献
https://blog.csdn.net/qq_35296537/article/details/89067245
https://jingyan.baidu.com/article/d45ad1484cb36b69552b80ba.html