Skip to main content

Posts

Showing posts from March, 2017

Configuring Sublime to run in command line for Mac PC

On March 2017, I migrated to 2016 model Macbook Pro and now I am on my way to configure all the web development tools which was using before on Linux PC. Installation of most of the tools are pretty straight forward compared to Linux. On most of the occasions we don't even need to run any commands during installation process. By the way, my mac os version is Sierra (10.12)  I installed latest version of Sublime Text(version 3, build #3126). When I started to do actual development, I encountered this issue. From terminal I tried to run " subl . " . But I received an error saying command not found .   A one line terminal command could resolve this issue: ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin/subl Here we are linking /usr/local/bin/subl with sublime executable command. So later when we run subl . it will open Sublime Text IDE from current working directory. If you again encounter any issue, then you may nee