原創部落格地址:https://lwxshow.com/post/1816.html
sublime text 可以說是與eclipse並說全世界目前最好的開發工具了。
很多時候,大家在網上搜尋sublimetext 3安裝package control,顯示的99%都是不能用的。這裡就不一一列舉了。總是一句話,都是浮雲。那麼如何搞定不能安裝package control這個問題咧。
下面,就為大家分享本人的經驗。
sublime text 最新安裝package control方式
菜單-----view---->show console
ctrl+~
複製如下代碼,粘貼到console框中
1.sublime text 3安裝指令碼 Code View Print import urllib.request,os,hashlib; h = '2915d1851351e5ee549c20394736b442' + '8bc59f460fa1548d1514676163dafc88'; 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)
2.sublime text 2安裝指令碼 Code View Print import urllib2,os,hashlib; h = '2915d1851351e5ee549c20394736b442' + '8bc59f460fa1548d1514676163dafc88'; 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')
3.手動安裝的說。
不錯的話,就贊一個吧。
下載 Package Control.sublime-package
[file]
複製到你的安裝包目錄
好吧。有人說不知道安裝包目錄在哪裡。
單擊 Preferences > Browse Packages
就會開啟你的安裝包的目錄了。
Restart Sublime Text