How To Install Lime Text On Ubuntu 14.04, Linux Mint 17, Elementary OS 0.3, Deepin 2014 And Other Ubuntu 14.04 Derivatives


 Hello friends.
Lime Text is a powerful and elegant text editor primarily developed in Go that aims to be a Free and open-source software successor to Sublime Text.
Lime has a few frontends (QML, command-line interface) that can be selectively used with the pluggable backend.
You can even develop your own and make it a drop-in replacement!
how to install Lime Text on Ubuntu 14.04 Trusty Tahr, Linux Mint 17 Qiana, Pinguy OS 14.04, Elementary OS 0.3 Freya, Peppermint Five, LXLE 14.04, Linux Lite 2.0, Deepin 2014 and other Ubuntu 14.04 derivative systems.
Because it is not available via any repository or PPA, we have to install Lime Text from Git. Follow the instructions exactly, in order to get a successful installation.
Install the needed dependencies:
$ sudo apt-get install python3.4 libonig2 libonig-dev git golang python3-dev libqt5qml-graphicaleffects libqt5opengl5-dev qtbase5-private-dev qtdeclarative5-dev qtdeclarative5-controls-plugin qtdeclarative5-quicklayouts-plugin
Set the proper path for Golang:
$ export GOPATH=~/golang

Download and run termbox:
$ export PKG_CONFIG_PATH=$GOPATH/src/github.com/limetext/rubex
$ go get -u github.com/limetext/lime/frontend/termbox
$ cd $GOPATH/src/github.com/limetext/lime
$ git submodule update --init
$ cd $GOPATH/src/github.com/limetext/lime/frontend/termbox
$ go build
$ ./termbox main.go

Download and run qml:
$ export PKG_CONFIG_PATH=$GOPATH/src/github.com/limetext/rubex
$ go get -u github.com/limetext/lime/frontend/qml
$ cd $GOPATH/src/github.com/limetext/lime
$ git submodule update --init
$ cd $GOPATH/src/github.com/limetext/lime/frontend/qml
$ go run main.go