怎么安装package control
2个回答
展开全部
从菜单 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')
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
这是官网的安装方法:
1Click the Preferences > Browse Packages… menu
2Browse up a folder and then into the Installed Packages/ folder
3Download Package Control.sublime-package and copy it into the Installed Packages/ directory
4Restart Sublime Text
如果在 Preferences -> Package Settings中见到Package Control这一项,就说明安装成功了。
1Click the Preferences > Browse Packages… menu
2Browse up a folder and then into the Installed Packages/ folder
3Download Package Control.sublime-package and copy it into the Installed Packages/ directory
4Restart Sublime Text
如果在 Preferences -> Package Settings中见到Package Control这一项,就说明安装成功了。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询