728x90 AdSpace

  • Latest Post

    Friday, September 5, 2014

    How to install Sublime Text 3 Build 3065 on Mac OS X

    Guide to how to install Sublime Text 3 on Mac OS X
    Guide to how to install Sublime Text 3 Build 3065 on Mac OS X

    How to install Sublime Text 3 Build 3065 on Mac OS X


    Sublime Text is the best editor I’ve used. It’s fast, extraordinary features, amazing performance, extendable plugin and hasn’t ever crashed on me. Sublime Text 3 is right now in beta. The latest build is 3065.

    Download and Install Sublime Text 3

    Download the latest sublime text 3 editor to http://www.sublimetext.com/3, and install on your pc.

    Setting up Sublime for the command line

    Set sublime as the default code editor in shell terminal.
    Create a symbolic link to the app using Terminal:

        $ sudo ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/bin
    

    Set Sublime as the default editor in .profile:

        export EDITOR="subl -w"
        export BUNDLE_EDITOR="subl"
    

    Adding Package Control

     Get the latest source using Git and clone it into Sublime's Packages folder, and finally checkout the python3 branch, then restart sublime text to work:
        $ cd ~/Library/Application\ Support/Sublime\ Text\ 3/Packages/ 
        $ git clone https://github.com/wbond/sublime_package_control.git "Package Control"
        $ cd "Package Control"
        $ git checkout python3
     
    To bring Package Control up, press CMD + SHIFT + P.
     


    • Blogger Comments
    • Facebook Comments

    0 comments:

    Post a Comment

    Item Reviewed: How to install Sublime Text 3 Build 3065 on Mac OS X Rating: 5 Reviewed By: Mark John Dee
    Scroll to Top