.deb Installed Minitube 3.0 does not launch on ubuntu 16.04 and on Ubuntu 18.04





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







1















I updated the minitube into version 3.0 via a deb package provided from the website (https://flavio.tordini.org/minitube) but when I try to launch it it simply does not open. Thus I tried via terminal and I get the following errors:



minitube: /usr/lib/x86_64-linux-gnu/libQt5X11Extras.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5DBus.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Qml.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Network.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Sql.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Gui.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Core.so.5: version `Qt_5.11' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Core.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5: version `Qt_5' not found (required by minitube)


I tried as seen from github repository to install the following libraries:



sudo apt install build-essential qt5-default qttools5-dev-tools qt5-qmake qtdeclarative5-dev libqt5sql5-sqlite libqt5x11extras5-dev libmpv-dev 


Still failed to launch. I purged the minitube:



sudo apt-get purge minitube


And I reinstalled it:



sudo dpkg -i minitube.deb


Still no light in my path.



I also created an ubuntu 18.04 VM and tried to install in it:



sudo apt-get install qt5-default libqt5qml5 libqt5sql5 libqt5sql5-sqlite libmpv1
# Install the browser downloaded deb
sudo dkpg -i minitube.deb


Still fails to launch with the error:



minitube: /usr/lib/x86_64-linux-gnu/libQt5Core.so.5: version `Qt_5.11' not found (required by minitube)


Any ideas how to fix that?



Edit 1



In the end managed to compile the v2.9 in Ubuntu 18.04 Vm but failed to play a video even if the video list is loaded correctly.



Edit 2



On ubuntu 16.04LTS I have installed the phonon4qt5-backend-gstreamer via apt still fails to launch the .deb installed version.










share|improve this question

























  • Installation of packages mentioned on github page are needed to compile the package, they should not change anything with binary version. You may try to compile it following askubuntu.com/a/672505/66509 .

    – N0rbert
    Mar 23 at 20:35











  • So in other words I should build it by myrself right?

    – Dimitrios Desyllas
    Mar 23 at 20:47











  • You may try, but I am not sure that it would work as it will not change the Qt version of the system. Faster method - is to try Ubuntu 18.10 on VM (it has minitube 2.9-1).

    – N0rbert
    Mar 23 at 20:51











  • Well repo bases ones do work but on Ubuntu18.04vm the minitube 2.5.x has been installed.

    – Dimitrios Desyllas
    Mar 23 at 22:16











  • the latest (3.0/2.9) requires qt 5.6 at a min but has to be built on whatever your on. His packages may only work on 18.10. To see I built the 3.0 git on both 18.04 and 19.04, works ok. If you build you need to use a Google API Key. See the readme in the source. As getting key is a pita just use debian's, i.e qmake DEFINES+=APP_GOOGLE_API_KEY=AIzaSyC9EDpL8xpx_EcAbTbn66wbMwMzqzSI3MM

    – doug
    Mar 23 at 23:48




















1















I updated the minitube into version 3.0 via a deb package provided from the website (https://flavio.tordini.org/minitube) but when I try to launch it it simply does not open. Thus I tried via terminal and I get the following errors:



minitube: /usr/lib/x86_64-linux-gnu/libQt5X11Extras.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5DBus.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Qml.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Network.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Sql.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Gui.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Core.so.5: version `Qt_5.11' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Core.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5: version `Qt_5' not found (required by minitube)


I tried as seen from github repository to install the following libraries:



sudo apt install build-essential qt5-default qttools5-dev-tools qt5-qmake qtdeclarative5-dev libqt5sql5-sqlite libqt5x11extras5-dev libmpv-dev 


Still failed to launch. I purged the minitube:



sudo apt-get purge minitube


And I reinstalled it:



sudo dpkg -i minitube.deb


Still no light in my path.



I also created an ubuntu 18.04 VM and tried to install in it:



sudo apt-get install qt5-default libqt5qml5 libqt5sql5 libqt5sql5-sqlite libmpv1
# Install the browser downloaded deb
sudo dkpg -i minitube.deb


Still fails to launch with the error:



minitube: /usr/lib/x86_64-linux-gnu/libQt5Core.so.5: version `Qt_5.11' not found (required by minitube)


Any ideas how to fix that?



Edit 1



In the end managed to compile the v2.9 in Ubuntu 18.04 Vm but failed to play a video even if the video list is loaded correctly.



Edit 2



On ubuntu 16.04LTS I have installed the phonon4qt5-backend-gstreamer via apt still fails to launch the .deb installed version.










share|improve this question

























  • Installation of packages mentioned on github page are needed to compile the package, they should not change anything with binary version. You may try to compile it following askubuntu.com/a/672505/66509 .

    – N0rbert
    Mar 23 at 20:35











  • So in other words I should build it by myrself right?

    – Dimitrios Desyllas
    Mar 23 at 20:47











  • You may try, but I am not sure that it would work as it will not change the Qt version of the system. Faster method - is to try Ubuntu 18.10 on VM (it has minitube 2.9-1).

    – N0rbert
    Mar 23 at 20:51











  • Well repo bases ones do work but on Ubuntu18.04vm the minitube 2.5.x has been installed.

    – Dimitrios Desyllas
    Mar 23 at 22:16











  • the latest (3.0/2.9) requires qt 5.6 at a min but has to be built on whatever your on. His packages may only work on 18.10. To see I built the 3.0 git on both 18.04 and 19.04, works ok. If you build you need to use a Google API Key. See the readme in the source. As getting key is a pita just use debian's, i.e qmake DEFINES+=APP_GOOGLE_API_KEY=AIzaSyC9EDpL8xpx_EcAbTbn66wbMwMzqzSI3MM

    – doug
    Mar 23 at 23:48
















1












1








1








I updated the minitube into version 3.0 via a deb package provided from the website (https://flavio.tordini.org/minitube) but when I try to launch it it simply does not open. Thus I tried via terminal and I get the following errors:



minitube: /usr/lib/x86_64-linux-gnu/libQt5X11Extras.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5DBus.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Qml.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Network.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Sql.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Gui.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Core.so.5: version `Qt_5.11' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Core.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5: version `Qt_5' not found (required by minitube)


I tried as seen from github repository to install the following libraries:



sudo apt install build-essential qt5-default qttools5-dev-tools qt5-qmake qtdeclarative5-dev libqt5sql5-sqlite libqt5x11extras5-dev libmpv-dev 


Still failed to launch. I purged the minitube:



sudo apt-get purge minitube


And I reinstalled it:



sudo dpkg -i minitube.deb


Still no light in my path.



I also created an ubuntu 18.04 VM and tried to install in it:



sudo apt-get install qt5-default libqt5qml5 libqt5sql5 libqt5sql5-sqlite libmpv1
# Install the browser downloaded deb
sudo dkpg -i minitube.deb


Still fails to launch with the error:



minitube: /usr/lib/x86_64-linux-gnu/libQt5Core.so.5: version `Qt_5.11' not found (required by minitube)


Any ideas how to fix that?



Edit 1



In the end managed to compile the v2.9 in Ubuntu 18.04 Vm but failed to play a video even if the video list is loaded correctly.



Edit 2



On ubuntu 16.04LTS I have installed the phonon4qt5-backend-gstreamer via apt still fails to launch the .deb installed version.










share|improve this question
















I updated the minitube into version 3.0 via a deb package provided from the website (https://flavio.tordini.org/minitube) but when I try to launch it it simply does not open. Thus I tried via terminal and I get the following errors:



minitube: /usr/lib/x86_64-linux-gnu/libQt5X11Extras.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5DBus.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Qml.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Network.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Sql.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Gui.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Core.so.5: version `Qt_5.11' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Core.so.5: version `Qt_5' not found (required by minitube)
minitube: /usr/lib/x86_64-linux-gnu/libQt5Widgets.so.5: version `Qt_5' not found (required by minitube)


I tried as seen from github repository to install the following libraries:



sudo apt install build-essential qt5-default qttools5-dev-tools qt5-qmake qtdeclarative5-dev libqt5sql5-sqlite libqt5x11extras5-dev libmpv-dev 


Still failed to launch. I purged the minitube:



sudo apt-get purge minitube


And I reinstalled it:



sudo dpkg -i minitube.deb


Still no light in my path.



I also created an ubuntu 18.04 VM and tried to install in it:



sudo apt-get install qt5-default libqt5qml5 libqt5sql5 libqt5sql5-sqlite libmpv1
# Install the browser downloaded deb
sudo dkpg -i minitube.deb


Still fails to launch with the error:



minitube: /usr/lib/x86_64-linux-gnu/libQt5Core.so.5: version `Qt_5.11' not found (required by minitube)


Any ideas how to fix that?



Edit 1



In the end managed to compile the v2.9 in Ubuntu 18.04 Vm but failed to play a video even if the video list is loaded correctly.



Edit 2



On ubuntu 16.04LTS I have installed the phonon4qt5-backend-gstreamer via apt still fails to launch the .deb installed version.







16.04 apt 18.04 software-installation qt






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 26 at 12:58







Dimitrios Desyllas

















asked Mar 23 at 20:26









Dimitrios DesyllasDimitrios Desyllas

403318




403318













  • Installation of packages mentioned on github page are needed to compile the package, they should not change anything with binary version. You may try to compile it following askubuntu.com/a/672505/66509 .

    – N0rbert
    Mar 23 at 20:35











  • So in other words I should build it by myrself right?

    – Dimitrios Desyllas
    Mar 23 at 20:47











  • You may try, but I am not sure that it would work as it will not change the Qt version of the system. Faster method - is to try Ubuntu 18.10 on VM (it has minitube 2.9-1).

    – N0rbert
    Mar 23 at 20:51











  • Well repo bases ones do work but on Ubuntu18.04vm the minitube 2.5.x has been installed.

    – Dimitrios Desyllas
    Mar 23 at 22:16











  • the latest (3.0/2.9) requires qt 5.6 at a min but has to be built on whatever your on. His packages may only work on 18.10. To see I built the 3.0 git on both 18.04 and 19.04, works ok. If you build you need to use a Google API Key. See the readme in the source. As getting key is a pita just use debian's, i.e qmake DEFINES+=APP_GOOGLE_API_KEY=AIzaSyC9EDpL8xpx_EcAbTbn66wbMwMzqzSI3MM

    – doug
    Mar 23 at 23:48





















  • Installation of packages mentioned on github page are needed to compile the package, they should not change anything with binary version. You may try to compile it following askubuntu.com/a/672505/66509 .

    – N0rbert
    Mar 23 at 20:35











  • So in other words I should build it by myrself right?

    – Dimitrios Desyllas
    Mar 23 at 20:47











  • You may try, but I am not sure that it would work as it will not change the Qt version of the system. Faster method - is to try Ubuntu 18.10 on VM (it has minitube 2.9-1).

    – N0rbert
    Mar 23 at 20:51











  • Well repo bases ones do work but on Ubuntu18.04vm the minitube 2.5.x has been installed.

    – Dimitrios Desyllas
    Mar 23 at 22:16











  • the latest (3.0/2.9) requires qt 5.6 at a min but has to be built on whatever your on. His packages may only work on 18.10. To see I built the 3.0 git on both 18.04 and 19.04, works ok. If you build you need to use a Google API Key. See the readme in the source. As getting key is a pita just use debian's, i.e qmake DEFINES+=APP_GOOGLE_API_KEY=AIzaSyC9EDpL8xpx_EcAbTbn66wbMwMzqzSI3MM

    – doug
    Mar 23 at 23:48



















Installation of packages mentioned on github page are needed to compile the package, they should not change anything with binary version. You may try to compile it following askubuntu.com/a/672505/66509 .

– N0rbert
Mar 23 at 20:35





Installation of packages mentioned on github page are needed to compile the package, they should not change anything with binary version. You may try to compile it following askubuntu.com/a/672505/66509 .

– N0rbert
Mar 23 at 20:35













So in other words I should build it by myrself right?

– Dimitrios Desyllas
Mar 23 at 20:47





So in other words I should build it by myrself right?

– Dimitrios Desyllas
Mar 23 at 20:47













You may try, but I am not sure that it would work as it will not change the Qt version of the system. Faster method - is to try Ubuntu 18.10 on VM (it has minitube 2.9-1).

– N0rbert
Mar 23 at 20:51





You may try, but I am not sure that it would work as it will not change the Qt version of the system. Faster method - is to try Ubuntu 18.10 on VM (it has minitube 2.9-1).

– N0rbert
Mar 23 at 20:51













Well repo bases ones do work but on Ubuntu18.04vm the minitube 2.5.x has been installed.

– Dimitrios Desyllas
Mar 23 at 22:16





Well repo bases ones do work but on Ubuntu18.04vm the minitube 2.5.x has been installed.

– Dimitrios Desyllas
Mar 23 at 22:16













the latest (3.0/2.9) requires qt 5.6 at a min but has to be built on whatever your on. His packages may only work on 18.10. To see I built the 3.0 git on both 18.04 and 19.04, works ok. If you build you need to use a Google API Key. See the readme in the source. As getting key is a pita just use debian's, i.e qmake DEFINES+=APP_GOOGLE_API_KEY=AIzaSyC9EDpL8xpx_EcAbTbn66wbMwMzqzSI3MM

– doug
Mar 23 at 23:48







the latest (3.0/2.9) requires qt 5.6 at a min but has to be built on whatever your on. His packages may only work on 18.10. To see I built the 3.0 git on both 18.04 and 19.04, works ok. If you build you need to use a Google API Key. See the readme in the source. As getting key is a pita just use debian's, i.e qmake DEFINES+=APP_GOOGLE_API_KEY=AIzaSyC9EDpL8xpx_EcAbTbn66wbMwMzqzSI3MM

– doug
Mar 23 at 23:48












1 Answer
1






active

oldest

votes


















0














One solution is to use the slight older minitube 2.9 version via flatpak tested in ubuntu 16.04 https://flathub.org/apps/details/org.tordini.flavio.Minitube



Whilst on ubuntu 18.04LTS I did manage to build manually the libmpv as seen in this question. So buidling it is one way to bypass the problem for Ubuntu 18.04LTS, as seen in the comment.



Officialy the developer does not want to support older version of ubuntu as seen in this github post due to libmpv dependency.






share|improve this answer
























    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "89"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1128127%2fdeb-installed-minitube-3-0-does-not-launch-on-ubuntu-16-04-and-on-ubuntu-18-04%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    One solution is to use the slight older minitube 2.9 version via flatpak tested in ubuntu 16.04 https://flathub.org/apps/details/org.tordini.flavio.Minitube



    Whilst on ubuntu 18.04LTS I did manage to build manually the libmpv as seen in this question. So buidling it is one way to bypass the problem for Ubuntu 18.04LTS, as seen in the comment.



    Officialy the developer does not want to support older version of ubuntu as seen in this github post due to libmpv dependency.






    share|improve this answer




























      0














      One solution is to use the slight older minitube 2.9 version via flatpak tested in ubuntu 16.04 https://flathub.org/apps/details/org.tordini.flavio.Minitube



      Whilst on ubuntu 18.04LTS I did manage to build manually the libmpv as seen in this question. So buidling it is one way to bypass the problem for Ubuntu 18.04LTS, as seen in the comment.



      Officialy the developer does not want to support older version of ubuntu as seen in this github post due to libmpv dependency.






      share|improve this answer


























        0












        0








        0







        One solution is to use the slight older minitube 2.9 version via flatpak tested in ubuntu 16.04 https://flathub.org/apps/details/org.tordini.flavio.Minitube



        Whilst on ubuntu 18.04LTS I did manage to build manually the libmpv as seen in this question. So buidling it is one way to bypass the problem for Ubuntu 18.04LTS, as seen in the comment.



        Officialy the developer does not want to support older version of ubuntu as seen in this github post due to libmpv dependency.






        share|improve this answer













        One solution is to use the slight older minitube 2.9 version via flatpak tested in ubuntu 16.04 https://flathub.org/apps/details/org.tordini.flavio.Minitube



        Whilst on ubuntu 18.04LTS I did manage to build manually the libmpv as seen in this question. So buidling it is one way to bypass the problem for Ubuntu 18.04LTS, as seen in the comment.



        Officialy the developer does not want to support older version of ubuntu as seen in this github post due to libmpv dependency.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 27 at 20:45









        Dimitrios DesyllasDimitrios Desyllas

        403318




        403318






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Ask Ubuntu!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1128127%2fdeb-installed-minitube-3-0-does-not-launch-on-ubuntu-16-04-and-on-ubuntu-18-04%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            How did Captain America manage to do this?

            迪纳利

            南乌拉尔铁路局