Originally sublime Text3 Installs the package control is very troublesome, now simple method comes!
First, simple installation method
To use CTRL + ' shortcut keys or open the command line from the View->show console menu, paste the following code:
importurllib.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()) |
If it goes well, you can now see the package settings and the package control two menus under the Preferences menu.
By the way, put sublime Text2 code:
importurllib2,os; pf=‘Package Control.sublime-package‘; ipp=sublime.installed_packages_path(); os.makedirs( ipp )ifnotos.path.exists(ipp)elseNone; 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‘) |
Second, manual Installation
You may not be able to use code installation for a variety of reasons, and you can manually install the package Control by using the following steps:
1. Click Preferences > Browse Packages Menu
2. Go to the upper-level directory of the Open directory before entering the installed packages/directory
3. Download the package control.sublime-package and copy it to the installed packages/directory
4. Restart Sublime Text.
---------------------------------------------------------------------------------------------
Reference 1:https://sublime.wbond.net/installation
Reprint to: http://www.cnblogs.com/luoshupeng/archive/2013/09/09/3310777.html
Sublime Text installation package Control