网上的package tool 安装办法已经失效,因为常见到的网站是指向http://sublime.wbond.net/的,然而这个网站不翻墙访问不了;
翻墙看了一下这个网站转向的是 https://packagecontrol.io 这个网站,查阅里面的安装说明,即可正确安装:
https://packagecontrol.io/installation#st2
具体如下:
INSTALLATION
Simple
The simplest method of installation is through the Sublime Text console. The console is accessed via the ctrl+` shortcut or the menu. Once open, paste the appropriate Python code for your version of Sublime Text into the console.
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)
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')
如果还不行的话就只能用手动安装的办法了
Manual
If for some reason the console installation instructions do not work for you (such as having a proxy on your network), perform the following steps to manually install Package Control:
- 点击菜单栏
- 进入Sublime Text 3/ Installed Packages/ 文件夹
- 下载 Package Control.sublime-package 然后复制到Sublime Text 3/ Installed Packages/里面,如果已经有文件,选择覆盖
- 重启即可
本文详细介绍了Sublime Text中PackageControl插件安装遇到的问题及解决方案,包括通过控制台安装和手动安装两种方法。针对无法访问原始网站的情况,提供了通过翻墙访问的方法并确保安装过程的安全性。
399

被折叠的 条评论
为什么被折叠?



