Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sublime Text 2 Package Control error

CTRL SHIFT P -> Package control : Install package

If I go here, I get an error straight away

'Package Control: There are no packages available for installation'

I suspect this might be because of my college authenticated proxy. But I've already set my system variables regarding this correctly, so stuff like URLLIB2 work well.

I also added (with the correct values)

"http_proxy": "http://id:pass@proxy:port",
"https_proxy": "http://id:pass@proxy:port", 

to Package control's default settings. Still I'm getting this error. Any idea how to debug this further?

like image 429
user1265125 Avatar asked Sep 20 '12 21:09

user1265125


People also ask

What is sublime-package control?

What is it? According to its webpage: A full-featured package manager that helps discovering, installing, updating and removing packages for Sublime Text 2. It features an automatic upgrader and supports GitHub, BitBucket and a full channel/repository system.

How do I enable packages in Sublime Text?

Steps for Installing Package Control (Sublime Text 3):Open the Command Palette: Press Ctrl+Shift+P (Windows) or Cmd+Shift+P (OS X). Type 'install' in the Command Palette input box, which should autocomplete to 'Install Package Control. ' Press Enter to select it. Sublime Text 3 will start installing Package Control.

Where is sublime-package control?

You can find a list of all the packages installed in your Sublime Text editor with Package Control. First open Package Control from Preferences > Package Control as before. Now click on Package Control: List Packages from the list as marked in the screenshot below.


2 Answers

I fixed this by adding "http_proxy": "your.proxy:port", "https_proxy": "your.proxy:port" to the end of my User/Package Control.sublime-settings config file.

like image 96
withoutclass Avatar answered Nov 26 '22 11:11

withoutclass


I had the same issue with my settings, you have to set your proxy in the general Settings - User file for Sublime Text, not the general settings in the Package Control.

like image 34
runningRhetoric Avatar answered Nov 26 '22 11:11

runningRhetoric