Monday, April 8, 2013

[Sublime Text] 基本安裝教學

1.先至官網下載: http://www.sublimetext.com/2

2.點兩下安裝。

3.啟動 Sublime Text 2 ,按下 Ctrl + ` 

4.貼上語法(如下),按下 Enter 。
import urllib2,os,hashlib; h = 'eb2297e1a458f27d836c04bb0cbaf282' + 'd0e7a3098092775ccb37ca9d6b2e4b7d'; 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') 5.關閉 Sublime Text 2 重新啟動。

6.在 preference 開啟 Package Control。

7.輸入 install package 可以安裝外掛了。

備註: package 的資訊可以在這個網站搜尋 package control

No comments:

Post a Comment