Sublime Text 3 – Package Control : “No packages available for installation” error when trying to install packages through secure channel

Had the same issue today. Reinstalled package control: Deleted Package Control folder inside the Sublime Text 3 > Packages folder went to https://sublime.wbond.net/installation and executed the manual installation instructions there …namely Click the Preferences > Browse Packages… menu Browse up a folder and then into the Installed Packages/ folder Download Package Control.sublime-package and copy it … Read more

How to install docker specific version

I find easier to check available versions with sudo apt-cache policy docker-engine and then install the one you want: sudo apt-get install docker-engine=1.7.1-0~trusty It consists on simply following the instructions from docker docs https://docs.docker.com/engine/installation/ubuntulinux/, but selecting a particular version

How to compile and run C in sublime text 3?

Have you tried just writing out the whole command in a single string? { “cmd” : [“gcc $file_name -o ${file_base_name} && ./${file_base_name}”], “selector” : “source.c”, “shell”: true, “working_dir” : “$file_path” } I believe (semi-speculation here), that ST3 takes the first argument as the “program” and passes the other strings in as “arguments”. https://docs.python.org/2/library/subprocess.html#subprocess.Popen