解决国内 https://packagecontrol.io 无法访问的问题
目前买了台服务器每6个小时拉取一次最新的文件
Package Control There are no packages available for installation Please see https://packagecontrol.io/docs/troubleshooting for help
- 下载 channel_v3.json 到本地 /path/xxx/channel_v3.json
- 点击 Preferences > Package Settings > Package Control > Settings - User
- 添加
"channels": ["/path/xxx/channel_v3.json"],
- 点击 Preferences > Package Settings > Package Control > Settings - User
- 添加
"channels": ["https://tekintian.coding.net/p/tekin/d/channel_v3_daily/git/raw/master/channel_v3.json"],
https://tekintian.coding.net/p/tekin/d/channel_v3_daily/git/raw/master/channel_v3.json
- 点击st3里面的菜单 “Preferences > Browse Packages” 或者 “首选项 > 浏览插件目录”
- 此时你所在的目录是 “Sublime Text 3/Packages”,进入到 “Sublime Text 3/Installed Packages”
- 下载 Package Control插件包,将该插件包复制到 "Installed Packages/" 目录内
- 重启 Sublime Text
-
通过快捷键
ctrl+``
或者菜单View > Show Console
或者菜单视图 > 显示/隐藏控制台
进入控制台,复制下面的代码到控制台运行 -
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( 'https://github.com/HBLong/channel_v3_daily/raw/master/' + 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( 'https://github.com/HBLong/channel_v3_daily/raw/master/' + 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')