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?
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.
Use follow code to install Package controll. Replace your proxy protocol, username , password , url and port config:
I fix it by following steps:
I fixed this by adding
"http_proxy": "your.proxy:port", "https_proxy": "your.proxy:port"
to the end of myUser/Package Control.sublime-settings
config file.Make sure curl is installed as the package controller needs it.
You should specify your credentials using separate parameters
proxy_username
andproxy_password
in your User Settings. Do not use http:// or any other prefixes in proxy URL, since http_proxy and https_proxy should contain only proxy server domain (or IP) and port, separated by a colon.I've experienced same trouble on my work machine because of NTLM proxy, and following settings works for me: