标签:style blog http os io 文件 ar art
sublime text2 可以离线和在线两种安装插件的方法:
1.离线安装插件:①下载离线插件并且解压;
②把解压的文件夹放在 .\Sublime Text 2.0.2 x64\Data\Packages 中即可。
2.安装package control组件,然后直接在线安装:
①按Ctrl+`调出console
②粘贴以下代码到底部命令行并回车:
import urllib2,os,hashlib; h = ‘7183a2d3e96f11eeadd761d777e62404‘ + ‘e330c659d4bb41d3bdf022e94cab3cd0‘; 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://sublime.wbond.net/‘ + 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‘)
③重启Sublime Text 2。
④如果在Perferences->package settings中看到package control这一项,则安装成功。
用Package control 安装插件的方法:
①按下Ctrl+Shift+P调出命令面板
②输入install 调出 Install Package 选项并回车,然后在列表中选中要安装的插件。
由于暂时找不到ConvertToUTF8的在线安装包,点此下载离线安装包,按照上述离线安装插件的方法安装即可。
sublime text2 安装插件的方法,布布扣,bubuko.com
标签:style blog http os io 文件 ar art
原文地址:http://www.cnblogs.com/uangyy/p/3911351.html