發(fā)布時(shí)間:2024-04-10 文章來源:深度系統(tǒng)下載 瀏覽:
由于packagecontrol.io容易被墻,訪問不穩(wěn)定,所以需要將Sublime Text安裝插件的地址改為中文鏡像的地址: 第一步: 通過控制臺(tái)安裝插件代碼,通過 ctrl+` 或 View > Show Console打開控制臺(tái),將Python代碼粘貼到控制臺(tái),回車。 SUBLIME TEXT 3 代碼 import urllib.request,os,hashlib; h = '6f4c264a24d933ce70df5dedcf1dcaee' + 'ebe013ee18cced0ef93d5f746d80ef60'; 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.cn/' + 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 = '6f4c264a24d933ce70df5dedcf1dcaee' + 'ebe013ee18cced0ef93d5f746d80ef60'; 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.cn/' + 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')
第二步: 點(diǎn)擊【Preferences->Package Settings ->Package Control ->Settings-User】打開Package Control配置文件,修改或新增channels地址,內(nèi)容如下,保存一下即可。 { "channels": [ "http://packagecontrol.cn/channel_v3.json" ] }
說明: 安裝完插件時(shí)Sublime Text會(huì)請(qǐng)求packagecontrol.io提交此次安裝的一些基本信息,來統(tǒng)計(jì)插件安裝的數(shù)量,所以,安裝過程還是有一些慢。 |