Sublime text 2or3 插件安装办法(2015更新)

来源:互联网 发布:淘宝美工一个图多少钱 编辑:程序博客网 时间:2024/05/07 05:16

网上的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 View > Show Consolemenu. Once open, paste the appropriate Python code for your version of Sublime Text into the console.

SUBLIME TEXT 3

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)

SUBLIME TEXT 2

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:

  1. 点击菜单栏 Preferences > Browse Packages… 
  2. 进入Sublime Text 3/ Installed Packages/ 文件夹
  3. 下载 Package Control.sublime-package 然后复制到Sublime Text 3/ Installed Packages/里面,如果已经有文件,选择覆盖
  4. 重启即可

0 0
原创粉丝点击