Sublime 官方安装方法

Posted imsoft.cnblogs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sublime 官方安装方法相关的知识,希望对你有一定的参考价值。

1. Crtl + ` : 进入控制台模式

2. 复制下面相应版本的代码,按Enter键运行

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 3


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‘) 


 

 

官方文档: https://packagecontrol.io/installation#st2

以上是关于Sublime 官方安装方法的主要内容,如果未能解决你的问题,请参考以下文章

使用sublime一键格式化XML文件

Sublime text3插件安装方法

Sublime Text 3插件安装方法

Sublime Text 3插件安装方法

Sublime Text 3中文乱码解决方法以及安装包管理器方法

Sublime Text 3 常用插件以及安装方法