sublime text package control安装
sublime text用着还不错,轻巧,多语言支持,重要的是还免费,即使没有购买,也是可以使用的。未授权版在功能上没有限制,只会偶尔弹出需要购买的提示,不影响正常使用。
sublime text插件丰富,在sublime上可以编辑 python, php, html,css,js等。安装插件就必须安装 package control,安装的方法是:按 [ ctrl+` ]然后输入下面的代码,回车,稍等片刻就安装好了。
Sublime Text 3
import urllib.request,os,hashlib; h = 'df21e130d211cfc94d9b0905775a7c0f' + '1e3d39e33b79698005270310898eea76'; 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 Text 2
import urllib2,os,hashlib; h = 'df21e130d211cfc94d9b0905775a7c0f' + '1e3d39e33b79698005270310898eea76'; 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')
更多阅读
陈宝文
2016年11月9日 上午11:45
网站整的不错喔,越来越简单了,越来越快了
jinaYang
2016年11月9日 下午12:55
嗯。追求简单了。把有用的记下来。