sublime text的安装及包安装


sublime text的安装及包安装

sublime text

转载于: 
http://qianduanblog.com/post/sublime-text-3-plugin-package-control.html 
版权归原作者所有

1 操作步骤

复制以下代码:

  
  
  
  
  1. import urllib.request,os; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); open(os.path.join(ipp, pf), 'wb').write(urllib.request.urlopen( 'http://sublime.wbond.net/' + pf.replace(' ','%20')).read())

打开sublime text 3,按ctrl+`或者菜单View > Show Console打开命令窗口,粘贴以上代码并回车即可。

2 解决Sublime Text 3中文显示乱码问题

  • 打开Sublime Text 3,按Ctrl+~打开控制行,复制粘贴以下python代码,然后回车运行。
  
  
  
  
  1. import urllib.request,os,hashlib; h = '7183a2d3e96f11eeadd761d777e62404e330c659d4bb41d3bdf022e94cab3cd0'; 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://sublime.wbond.net/' + 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 3。
  • 按Ctrl+Shift+P打开命令行,输入Install Package,回车,然后继续输入ConvertToUTF8,回车。
  • 等安装好了以后,应该问题就解决了.
  • 如果还是不行,再按照安装ConvertToUTF8的方式安装GBK Encoding Support,就好了。

参考资料

  • https://sublime.wbond.net/installation#st
  • http://blog.csdn.net/china_chenxing/article/details/18841641

你可能感兴趣的:(sublime,text)