how to install spdlog in ubuntu 14.04? [duplicate]





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







1
















This question already has an answer here:




  • “Unable to locate package” while trying to install packages with APT

    5 answers




naveen@naveen-VirtualBox:~$ sudo apt-get install libspdlog-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package libspdlog-dev
naveen@naveen-VirtualBox:~$









share|improve this question















marked as duplicate by karel, Charles Green, Eric Carvalho, Kulfy, Elder Geek Feb 10 at 21:19


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.














  • 3





    Looks like the libspdlog-dev package is only available in 16.04 onwards (packages.ubuntu.com/search?keywords=libspdlog-dev). 14.04 end of life is April 2019, so it may be worth considering an upgrade anyway?

    – Broadsworde
    Feb 10 at 13:19




















1
















This question already has an answer here:




  • “Unable to locate package” while trying to install packages with APT

    5 answers




naveen@naveen-VirtualBox:~$ sudo apt-get install libspdlog-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package libspdlog-dev
naveen@naveen-VirtualBox:~$









share|improve this question















marked as duplicate by karel, Charles Green, Eric Carvalho, Kulfy, Elder Geek Feb 10 at 21:19


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.














  • 3





    Looks like the libspdlog-dev package is only available in 16.04 onwards (packages.ubuntu.com/search?keywords=libspdlog-dev). 14.04 end of life is April 2019, so it may be worth considering an upgrade anyway?

    – Broadsworde
    Feb 10 at 13:19
















1












1








1









This question already has an answer here:




  • “Unable to locate package” while trying to install packages with APT

    5 answers




naveen@naveen-VirtualBox:~$ sudo apt-get install libspdlog-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package libspdlog-dev
naveen@naveen-VirtualBox:~$









share|improve this question

















This question already has an answer here:




  • “Unable to locate package” while trying to install packages with APT

    5 answers




naveen@naveen-VirtualBox:~$ sudo apt-get install libspdlog-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package libspdlog-dev
naveen@naveen-VirtualBox:~$




This question already has an answer here:




  • “Unable to locate package” while trying to install packages with APT

    5 answers








14.04






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Feb 10 at 13:29









guiverc

5,17121723




5,17121723










asked Feb 10 at 13:07









NAVEEN AGRAWALNAVEEN AGRAWAL

61




61




marked as duplicate by karel, Charles Green, Eric Carvalho, Kulfy, Elder Geek Feb 10 at 21:19


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.









marked as duplicate by karel, Charles Green, Eric Carvalho, Kulfy, Elder Geek Feb 10 at 21:19


This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.










  • 3





    Looks like the libspdlog-dev package is only available in 16.04 onwards (packages.ubuntu.com/search?keywords=libspdlog-dev). 14.04 end of life is April 2019, so it may be worth considering an upgrade anyway?

    – Broadsworde
    Feb 10 at 13:19
















  • 3





    Looks like the libspdlog-dev package is only available in 16.04 onwards (packages.ubuntu.com/search?keywords=libspdlog-dev). 14.04 end of life is April 2019, so it may be worth considering an upgrade anyway?

    – Broadsworde
    Feb 10 at 13:19










3




3





Looks like the libspdlog-dev package is only available in 16.04 onwards (packages.ubuntu.com/search?keywords=libspdlog-dev). 14.04 end of life is April 2019, so it may be worth considering an upgrade anyway?

– Broadsworde
Feb 10 at 13:19







Looks like the libspdlog-dev package is only available in 16.04 onwards (packages.ubuntu.com/search?keywords=libspdlog-dev). 14.04 end of life is April 2019, so it may be worth considering an upgrade anyway?

– Broadsworde
Feb 10 at 13:19












1 Answer
1






active

oldest

votes


















0














You can install package from 16.04 LTS on your 14.04 LTS manually with commands below:



cd ~/Downloads
wget http://mirrors.kernel.org/ubuntu/pool/universe/s/spdlog/libspdlog-dev_1.6-1_amd64.deb
sudo dpkg -i libspdlog-dev_1.6-1_amd64.deb


Then use its headers on compilation or launch test examples:



cp -ar /usr/share/doc/libspdlog-dev/example ~/libspdlog-example
cd ~/libspdlog-example
gunzip bench.cpp.gz
gunzip example.cpp.gz
make
mkdir logs
./example
./bench





share|improve this answer
































    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    You can install package from 16.04 LTS on your 14.04 LTS manually with commands below:



    cd ~/Downloads
    wget http://mirrors.kernel.org/ubuntu/pool/universe/s/spdlog/libspdlog-dev_1.6-1_amd64.deb
    sudo dpkg -i libspdlog-dev_1.6-1_amd64.deb


    Then use its headers on compilation or launch test examples:



    cp -ar /usr/share/doc/libspdlog-dev/example ~/libspdlog-example
    cd ~/libspdlog-example
    gunzip bench.cpp.gz
    gunzip example.cpp.gz
    make
    mkdir logs
    ./example
    ./bench





    share|improve this answer






























      0














      You can install package from 16.04 LTS on your 14.04 LTS manually with commands below:



      cd ~/Downloads
      wget http://mirrors.kernel.org/ubuntu/pool/universe/s/spdlog/libspdlog-dev_1.6-1_amd64.deb
      sudo dpkg -i libspdlog-dev_1.6-1_amd64.deb


      Then use its headers on compilation or launch test examples:



      cp -ar /usr/share/doc/libspdlog-dev/example ~/libspdlog-example
      cd ~/libspdlog-example
      gunzip bench.cpp.gz
      gunzip example.cpp.gz
      make
      mkdir logs
      ./example
      ./bench





      share|improve this answer




























        0












        0








        0







        You can install package from 16.04 LTS on your 14.04 LTS manually with commands below:



        cd ~/Downloads
        wget http://mirrors.kernel.org/ubuntu/pool/universe/s/spdlog/libspdlog-dev_1.6-1_amd64.deb
        sudo dpkg -i libspdlog-dev_1.6-1_amd64.deb


        Then use its headers on compilation or launch test examples:



        cp -ar /usr/share/doc/libspdlog-dev/example ~/libspdlog-example
        cd ~/libspdlog-example
        gunzip bench.cpp.gz
        gunzip example.cpp.gz
        make
        mkdir logs
        ./example
        ./bench





        share|improve this answer















        You can install package from 16.04 LTS on your 14.04 LTS manually with commands below:



        cd ~/Downloads
        wget http://mirrors.kernel.org/ubuntu/pool/universe/s/spdlog/libspdlog-dev_1.6-1_amd64.deb
        sudo dpkg -i libspdlog-dev_1.6-1_amd64.deb


        Then use its headers on compilation or launch test examples:



        cp -ar /usr/share/doc/libspdlog-dev/example ~/libspdlog-example
        cd ~/libspdlog-example
        gunzip bench.cpp.gz
        gunzip example.cpp.gz
        make
        mkdir logs
        ./example
        ./bench






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Feb 10 at 14:56

























        answered Feb 10 at 14:37









        N0rbertN0rbert

        25.2k853118




        25.2k853118















            Popular posts from this blog

            Questions related to Moebius Transform of Characteristic Function of the Primes

            List of scandals in India

            Can not write log (Is /dev/pts mounted?) - openpty in Ubuntu-on-Windows?