Ubuntu – How to download and install an application from github

githubsoftware installation

Im trying to get an app from github and install it on Ubuntu.

Usually in windows I just download an exe or msi file and 2x click it.
But in Ubuntu its either using a PPA or a deb file or from github.

I tried googling some guides regarding github it & the closest to the concern is here. I tried following the guide but got stuck on step 2. The guide wants me to setup a github account.

I am trying to get this github app (Pesobit: PoS-based cryptocurrency).

Please guide me.

Best Answer

  1. That Git repository contains an INSTALL file, which is a common place for building and installation instructions. It reads:

    See doc/readme-qt.rst for instructions on building Pesobit QT, the intended-for-end-users, nice-graphical-interface, reference implementation of Pesobit.

  2. In doc/readme-qt.rst we can find installation instructions “for Debian and Ubuntu”:

    First, make sure that the required packages for Qt5 development of your distribution are installed, for Debian and Ubuntu these are:

    apt-get install qt5-default qt5-qmake qtbase5-dev-tools qttools5-dev-tools build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev libdb++-dev
    

    then execute the following:

    qmake
    make
    

    Alternatively, install Qt Creator and open the pesobit-qt.pro file.

    An executable named pesobit-qt will be built.

    You can also find a description of some useful build options in that file.

Related Question