Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Package Control in Sublime3 not working?

Tags:

sublimetext3

Note: I´ve searched for sublime here at the forum first, in order to post a question, because I wasn´t sure if this question was adequate for this specific forum and wanted to compare it with other posts. If it shouldn´t be here, please tell me so, and I´ll gladly close it here and open it in any other stackoverflow´s forum. Thanks.

I´ve just installed sublime3. After that I´ve installed package control. But even when I try and install some packages using package control not all packages get installed, even when I get the "successfully installed" message at the bottom of the window.

To install a new package I go to preferences/package control/install package, and after getting the "successfully installed message" I go to /list packages and it´s not there.

I realised that maybe that´s because some packages are not compatible with sublime 3 (even there it shouldn´t be the successfully installed message there).

So, I´ve tried the latest sublime3 version of emmet, but it seems that´s not working (I´ve tried some shortcuts without any success). So I´ve watched Chris Coyer screencast to check out if I´ve missed something, but it still won´t work.

I´ve tried installing it manually: I´ve went to C:\Program Files\Sublime Text 3\Packages (I´ve installed the x64 package, but for some reason it´s not installed into \Program Files (x86)). And then I copy/paste the unzipped folders of /emmet-sublime-master and /PyV8 (I´ve tried naming the folder just emmet).

And still, it won´t work. This kinda happened to me with a lot of packages, I´ve installes several of them, and when I go to preferences/package control/list packages, I get only 3 of them.

like image 551
Rosamunda Avatar asked Nov 09 '13 13:11

Rosamunda


1 Answers

For me, Package Control was already removed from ignored_packages, so that didn’t help. But the Sublime Text console held messages which indicated the problem. (Press Ctrl+` to open the console.)

PermissionError: [Errno 13] Permission denied: '/home/myuser/.config/sublime-text-3/Cache/Package Control/merged-ca-bundle.crt'

And changing ownership on the Package Control directory allowed me to use Package Control again:

chown -R myuser:myuser '/home/myuser/.config/sublime-text-3/Cache/Package Control/'
like image 106
JellicleCat Avatar answered Sep 27 '22 19:09

JellicleCat