博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Sublime Text 3 Package Control
阅读量:5959 次
发布时间:2019-06-19

本文共 1708 字,大约阅读时间需要 5 分钟。

从菜单 View - Show Console 或者 ctrl + ~ 快捷键,调出 console。将以下 Python 代码粘贴进去并 enter 执行,不出意外即完成安装。以下提供 ST3 和 ST2 的安装代码:

 

    Sublime Text 3:

    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 2:

import urllib2,os; 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( 
))); open( os.path.join( ipp, pf), 'wb' ).write( urllib2.urlopen( 
'http://sublime.wbond.net/' +pf.replace( ' ','%20' )).read()); print( 'Please 
restart Sublime Text to finish installation')

 

 

http://www.cnblogs.com/lhb25/p/10-essential-sublime-text-plugins.html

 

Today after I updated OS X to 10.9.5 and Xcode on Mac, I encounter a problem with Sublime Text 2 that when I write a Hello World program in C++, and run build, it says

Agreeing to the Xcode/iOS license requires admin privileges, please re-run as root via sudo.

 

Agreeing to Xcode license outside Sublime Text may help resolve the issue.

Running sudo xcrun cc should bring up the cli version of the Xcode license agreement. Another option is to open Xcode.app and agree in the GUI.

 

在terminal中打开Sublime

ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /opt/local/bin/subl

http://www.sublimetext.com/docs/2/osx_command_line.html

 

http://wasil.org/sublime-text-3-perfect-php-development-set-up

 

 

转载于:https://www.cnblogs.com/hbxeagle/p/3488937.html

你可能感兴趣的文章
org.openqa.selenium.StaleElementReferenceException
查看>>
数论之 莫比乌斯函数
查看>>
linux下查找某个文件位置的方法
查看>>
python之MySQL学习——数据操作
查看>>
Harmonic Number (II)
查看>>
长连接、短连接、长轮询和WebSocket
查看>>
day30 模拟ssh远程执行命令
查看>>
做错的题目——给Array附加属性
查看>>
Url.Action取消字符转义
查看>>
HBase 笔记3
查看>>
Linux嵌入式GDB调试环境搭建
查看>>
java分析jvm常用指令
查看>>
【Linux】Linux 在线安装yum
查看>>
oracle 管理操作 (转)
查看>>
DEV 等待窗口
查看>>
lombok
查看>>
Dev-FAT-UAT-PRO
查看>>
Android开发学习总结(五)——Android应用目录结构分析(转)
查看>>
[PHP]PHP rpc框架hprose测试
查看>>
Atom 编辑器系列视频课程
查看>>