美文网首页
sublime text 3环境配置

sublime text 3环境配置

作者: Swimming_cat | 来源:发表于2017-08-29 22:01 被阅读0次

    1. 官网下载sublime text3    www.sublimetext.com/

    2. 点击Download选择自己要下载版本

    3.  安装好之后 ctrl+ 打开控制面板(或者View下面Shide console )会出现控制面板 复制这段代码进去回车(仅供sublime text3)使用

     import urllib.request,os,hashlib; h = 'df21e130d211cfc94d9b0905775a7c0f' + '1e3d39e33b79698005270310898eea76'; 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 text2 复制这段代码进去

    import urllib2,os,hashlib; h = 'df21e130d211cfc94d9b0905775a7c0f' + '1e3d39e33b79698005270310898eea76'; 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')

    4.看左下角安装完成之后 ctrl shift + p 打开操作面板 安装自己需要的东西

    5.最好直接访问   packagecontrol.io/    里面有大量插件  自己可以安装步骤根据自己的需要进行安装

    相关文章

      网友评论

          本文标题:sublime text 3环境配置

          本文链接:https://www.haomeiwen.com/subject/etbadxtx.html