按照Sublime Text 3安装与插件配置
安装好 package control;
注册码: Sublime Text 3 最新注册码( 亲测可用2019年8月24日更新)按照sublime text3 下搭建python IDE环境 --Anaconda插件篇安装好Anaconda
不过的我的python_interpreter地址的跟作者不一样,是/usr/local/Homebrew/Cellar/python3/3.6.1/Frameworks/Python.framework/Versions/3.6/bin/python3.6
是通过在终端敲 which python3找到快捷路径,右键查看“显示简介”找到真实路径
并且作者的Settings-Users配置有误,最后达到自动补全,并不自动显示document的配置如下:
{
// https://github.com/DamnWidget/anaconda/blob/master/Anaconda.sublime-settings
"python_interpreter": "/usr/local/Homebrew/Cellar/python3/3.6.1/Frameworks/Python.framework/Versions/3.6/bin/python3.6",
"complete_parameters": false,//自动补全函数时是否匹配必要参数
"complete_all_parameters": false,//自动补全函数时是否匹配所有参数
"suppress_word_completions": false,//禁止代码补全
"suppress_explicit_completions": false,//禁止精确补全
"auto_formatting": true,//代码格式检查
"enable_docstrings_tooltip": false,// 显示文档
"enable_signatures_tooltip": false,//在悬浮窗中显示方法签名
"display_signatures": false//显示方法签名
}
最后,参照Anaconda Github 复制好了/Users/apple/Library/Application\ Support/Sublime\ Text\ 3/Packages/Python/Completion\ Rules.tmPreferences
大功告成
小技巧:在sublime中全选,可以看出空格处的字符是tab还是space,这样可以解决“TabError: inconsistent use of tabs and spaces in indentation”的问题。
sublime注册码地址 然后请关闭sublime更新提示,因为更新后需要重新输注册码。很可能你之前网上随便找的注册码,这次再输入就无效了。
更新:
sublime对key的check越来越严了。
在鼓励大家购买正版的前提下,分享一个通过改ip避过check的方法:
- Just trick for MAC OS user:
- After Enter License, close Sublime Text immediately before it is removed
- Open Terminal, sudo nano /etc/hosts
- Add this line:
127.0.0.1 license.sublimehq.com(保存退出时输入Y后,相当于“另存为”,还需要按enter键才能退出) - Open Finder, go to /Users/<your_username>/Library/Application Support/Sublime Text 3/Local
- Select file: License.sublime_license
- Command+I (right click > Get Info)
- Check the Locked checkbox in License.sublime_license info modal box
You will never lost your License.sublime_license file
PS:
Ubuntu下安装sublime