How to build the Adobe Brackets editor?

My aim is to install the Adobe Brackets editor and am following the instructions on this page.

I'm at the point of running the grunt setup command. My problem is, the instructions stop at this point.

What are the remaining steps I need to take in order to install the Brackets editor?

I'm using Ubuntu 14.04 on armhf architecture.

1 Answer

  1. Install dependencies

    sudo apt-get install python-software-properties python g++ make
    sudo apt-get install libnss3-1d libnspr4-0d gyp gtk+-2.0
    sudo add-apt-repository ppa:chris-lea/node.js
    sudo apt-get update
    sudo apt-get install nodejs
    sudo npm install -g grunt-cli
    npm install
  2. Go to your source folders, eg:

    mkdir -p ~/src
    cd ~/src
  3. Clone the repositories

    git clone
    git clone 
  4. Build

    cd brackets-shell
    grunt setup
    grunt build
3

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like