installing using the Package control component
You can also install the package control component and install it directly online:
- Press CTRL + ' bring up the console (note: There is a conflict between the keyboard shortcuts installed QQ Input method, Input Method property settings-Input Method management-Cancel Hotkey switch to QQ pinyin)
- Paste the following code into the bottom command line and enter:
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())
|
- Restart Sublime Text 3.
- If you see the package control item in Perferences->package settings, the installation succeeds.
Code for Sublime TEXT2
1 |
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‘
)
|
to install a plugin using the package control method:
- Press Ctrl+shift+p to bring up the command panel
- Enter install to bring up the Install Package option and enter, then select the plug-in you want to install in the list.
Thank you: http://www.cnblogs.com/Rising/p/3741116.html
Sublime Text 3 Plugin