Sublime Forum

Package Control In Sublime Text 2

#1

Hi all,

I’ve got a weird issue with Sublime Text 2. Everytime I try to press **Control + ’ ** to install the package control, nothing happens? Not sure why this is the case? I have the latest build and I’m running OSX 10.6.

Would appreciate any assistance.

Thanks

0 Likes

#2

You should press CMD+` to open the console, then paste the snippet of code import urllib2,os;pf='Package Control.sublime-package';ipp=sublime.installed_packages_path();os.makedirs(ipp) if not os.path.exists(ipp) else None;open(os.path.join(ipp,pf),'wb').write(urllib2.urlopen('http://sublime.wbond.net/'+pf.replace(' ','%20')).read()) (from http://wbond.net/sublime_packages/package_control#Installation) into the console. After you restart Sublime Text, you should be able to open the Command Palette with CMD+SHIFT+P. Then you can type ‘package’ to filter out only the Package Control options.

0 Likes