Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Installation and Deployment
  4. Error in Installing Qt in Ubuntu-mate 18.04

Error in Installing Qt in Ubuntu-mate 18.04

Scheduled Pinned Locked Moved Unsolved Installation and Deployment
19 Posts 7 Posters 3.8k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • M Offline
    M Offline
    Malathi K
    wrote on 18 Jul 2019, 11:19 last edited by
    #1

    In an attempt to install Qt5 in Ubuntu-mate18.04, raspberrypi3b+ I get the following error. Please check the screenshot
    0_1563448719820_Screenshot at 2019-07-01 14-51-03.png

    J 1 Reply Last reply 18 Jul 2019, 11:47
    0
    • M Malathi K
      18 Jul 2019, 11:19

      In an attempt to install Qt5 in Ubuntu-mate18.04, raspberrypi3b+ I get the following error. Please check the screenshot
      0_1563448719820_Screenshot at 2019-07-01 14-51-03.png

      J Offline
      J Offline
      jsulm
      Lifetime Qt Champion
      wrote on 18 Jul 2019, 11:47 last edited by
      #2

      @Malathi-K Why sudo? You can install in your home directory, for that you don't need sudo.
      Also, yre you trying to install x86 Qt on RaspberryPi? If so this is not going to work - RaspberryPi is ARM not x86.
      You can install Qt via apt-get if you don't need latest Qt.

      https://forum.qt.io/topic/113070/qt-code-of-conduct

      M 1 Reply Last reply 19 Jul 2019, 06:21
      4
      • J jsulm
        18 Jul 2019, 11:47

        @Malathi-K Why sudo? You can install in your home directory, for that you don't need sudo.
        Also, yre you trying to install x86 Qt on RaspberryPi? If so this is not going to work - RaspberryPi is ARM not x86.
        You can install Qt via apt-get if you don't need latest Qt.

        M Offline
        M Offline
        Malathi K
        wrote on 19 Jul 2019, 06:21 last edited by
        #3

        @jsulm Thanks for your reply. I use this command to install qt

        //apt-get install qtcreator
        

        After that qt is installed successfully but I can't able to build my project. can you please tell what am I missing? Also when I open my project I got this message
        0_1563514161434_Screenshot at 2019-07-02 09-13-01.png

        1 Reply Last reply
        0
        • S Offline
          S Offline
          SGaist
          Lifetime Qt Champion
          wrote on 19 Jul 2019, 14:23 last edited by
          #4

          Hi,

          Looks like you may have copied a project with Qt Creator generated files in it like a .pro.user file.

          If so, delete it and reopen the project.

          Interested in AI ? www.idiap.ch
          Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

          1 Reply Last reply
          1
          • M Offline
            M Offline
            Malathi K
            wrote on 22 Jul 2019, 04:00 last edited by Malathi K
            #5

            Thanks for your reply.
            I have deleted the .pro.user file and reopened the project.I got the following error.Please find the screenshot.0_1563767949619_Screenshot at 2019-07-22 09-25-01.png.
            Please correct me if am wrong.I think Qt is not installed .Because I have no options in kits.

            A 1 Reply Last reply 22 Jul 2019, 04:49
            0
            • M Malathi K
              22 Jul 2019, 04:00

              Thanks for your reply.
              I have deleted the .pro.user file and reopened the project.I got the following error.Please find the screenshot.0_1563767949619_Screenshot at 2019-07-22 09-25-01.png.
              Please correct me if am wrong.I think Qt is not installed .Because I have no options in kits.

              A Offline
              A Offline
              aha_1980
              Lifetime Qt Champion
              wrote on 22 Jul 2019, 04:49 last edited by
              #6

              @Malathi-K that might be, as the distros package Qt in several small packages. so far you only installed Creator, but not the Qt development files.

              Qt has to stay free or it will die.

              M 1 Reply Last reply 22 Jul 2019, 05:09
              1
              • A aha_1980
                22 Jul 2019, 04:49

                @Malathi-K that might be, as the distros package Qt in several small packages. so far you only installed Creator, but not the Qt development files.

                M Offline
                M Offline
                Malathi K
                wrote on 22 Jul 2019, 05:09 last edited by Malathi K
                #7

                @aha_1980 for downloading development files I run this code

                //apt-get install qt4-default
                

                But I got 404 error please check the screen shot.
                0_1563772277831_404_error.png
                Is this the correct command to download the development files?

                A 1 Reply Last reply 22 Jul 2019, 06:30
                0
                • M Malathi K
                  22 Jul 2019, 05:09

                  @aha_1980 for downloading development files I run this code

                  //apt-get install qt4-default
                  

                  But I got 404 error please check the screen shot.
                  0_1563772277831_404_error.png
                  Is this the correct command to download the development files?

                  A Offline
                  A Offline
                  aha_1980
                  Lifetime Qt Champion
                  wrote on 22 Jul 2019, 06:30 last edited by
                  #8

                  @Malathi-K Usually the development files have a -dev suffix. But my Ubuntu 14.04 here shows:

                  apt-cache search qt5 | grep qt5-default
                  qt5-default - Qt 5 development defaults package
                  

                  so qt5-default should be a good start.

                  Also note that Qt 4 is already very old and I would not use it for new development.

                  Regards

                  Qt has to stay free or it will die.

                  M 1 Reply Last reply 24 Jul 2019, 07:22
                  2
                  • A aha_1980
                    22 Jul 2019, 06:30

                    @Malathi-K Usually the development files have a -dev suffix. But my Ubuntu 14.04 here shows:

                    apt-cache search qt5 | grep qt5-default
                    qt5-default - Qt 5 development defaults package
                    

                    so qt5-default should be a good start.

                    Also note that Qt 4 is already very old and I would not use it for new development.

                    Regards

                    M Offline
                    M Offline
                    Malathi K
                    wrote on 24 Jul 2019, 07:22 last edited by
                    #9

                    @aha_1980 Hi,

                    Can you please me fix this error, while trying to install qt5-default

                    ioz@ioz-desktop:~/Desktop$ sudo apt-get install qt5-default
                    Reading package lists... Done
                    Building dependency tree
                    Reading state information... Done
                    Some packages could not be installed. This may mean that you have
                    requested an impossible situation or if you are using the unstable
                    distribution that some required packages have not yet been created
                    or been moved out of Incoming.
                    The following information may help to resolve the situation:

                    The following packages have unmet dependencies:
                    qt5-default : Depends: qtbase5-dev but it is not going to be installed
                    E: Unable to correct problems, you have held broken packages.

                    Thanks
                    Malathi

                    A J 2 Replies Last reply 24 Jul 2019, 07:42
                    0
                    • M Malathi K
                      24 Jul 2019, 07:22

                      @aha_1980 Hi,

                      Can you please me fix this error, while trying to install qt5-default

                      ioz@ioz-desktop:~/Desktop$ sudo apt-get install qt5-default
                      Reading package lists... Done
                      Building dependency tree
                      Reading state information... Done
                      Some packages could not be installed. This may mean that you have
                      requested an impossible situation or if you are using the unstable
                      distribution that some required packages have not yet been created
                      or been moved out of Incoming.
                      The following information may help to resolve the situation:

                      The following packages have unmet dependencies:
                      qt5-default : Depends: qtbase5-dev but it is not going to be installed
                      E: Unable to correct problems, you have held broken packages.

                      Thanks
                      Malathi

                      A Offline
                      A Offline
                      aha_1980
                      Lifetime Qt Champion
                      wrote on 24 Jul 2019, 07:42 last edited by
                      #10

                      @Malathi-K ,

                      Sorry, no. The Ubuntu or Debian users might be more fluent with this.

                      Regards

                      Qt has to stay free or it will die.

                      1 Reply Last reply
                      0
                      • M Malathi K
                        24 Jul 2019, 07:22

                        @aha_1980 Hi,

                        Can you please me fix this error, while trying to install qt5-default

                        ioz@ioz-desktop:~/Desktop$ sudo apt-get install qt5-default
                        Reading package lists... Done
                        Building dependency tree
                        Reading state information... Done
                        Some packages could not be installed. This may mean that you have
                        requested an impossible situation or if you are using the unstable
                        distribution that some required packages have not yet been created
                        or been moved out of Incoming.
                        The following information may help to resolve the situation:

                        The following packages have unmet dependencies:
                        qt5-default : Depends: qtbase5-dev but it is not going to be installed
                        E: Unable to correct problems, you have held broken packages.

                        Thanks
                        Malathi

                        J Offline
                        J Offline
                        jsulm
                        Lifetime Qt Champion
                        wrote on 24 Jul 2019, 07:43 last edited by
                        #11

                        @Malathi-K Install qtbase5-dev also

                        https://forum.qt.io/topic/113070/qt-code-of-conduct

                        M 1 Reply Last reply 2 Aug 2019, 06:28
                        3
                        • J jsulm
                          24 Jul 2019, 07:43

                          @Malathi-K Install qtbase5-dev also

                          M Offline
                          M Offline
                          Malathi K
                          wrote on 2 Aug 2019, 06:28 last edited by
                          #12

                          @jsulm -I have installed qtbase5-dev as per your suggestion but still I get error.Please check the screenshot.
                          0_1564727160121_qt1.png
                          Also, My kits have no option for Qt5(qt2.png)
                          0_1564727204593_qt2.png

                          Help me in solving this error.

                          J 1 Reply Last reply 2 Aug 2019, 06:31
                          0
                          • M Malathi K
                            2 Aug 2019, 06:28

                            @jsulm -I have installed qtbase5-dev as per your suggestion but still I get error.Please check the screenshot.
                            0_1564727160121_qt1.png
                            Also, My kits have no option for Qt5(qt2.png)
                            0_1564727204593_qt2.png

                            Help me in solving this error.

                            J Offline
                            J Offline
                            jsulm
                            Lifetime Qt Champion
                            wrote on 2 Aug 2019, 06:31 last edited by jsulm 8 Feb 2019, 06:33
                            #13

                            @malathi-k Sorry, but in these tiny screenshots I cannot see anything helpful...
                            Please show the whole Kit configuration.
                            Also, there is an yellow exclamation mark on the left side of the Kit name put the cursor over it and see what the popup shows.
                            Also, do you really want to use Qt4 which is dead since many years already?

                            https://forum.qt.io/topic/113070/qt-code-of-conduct

                            M 1 Reply Last reply 2 Aug 2019, 11:49
                            2
                            • J jsulm
                              2 Aug 2019, 06:31

                              @malathi-k Sorry, but in these tiny screenshots I cannot see anything helpful...
                              Please show the whole Kit configuration.
                              Also, there is an yellow exclamation mark on the left side of the Kit name put the cursor over it and see what the popup shows.
                              Also, do you really want to use Qt4 which is dead since many years already?

                              M Offline
                              M Offline
                              Malathi K
                              wrote on 2 Aug 2019, 11:49 last edited by
                              #14

                              @jsulm I have uninstalled all qt related dependencies and again installed qt5. Please check the screenshot(there is no option to fix the font size to normal in ubuntu mate,as of now I have sent the picture of the whole screen ).
                              After reinstalling qt5,
                              0_1564746548055_qt kit error.png

                              J 1 Reply Last reply 2 Aug 2019, 11:53
                              0
                              • M Malathi K
                                2 Aug 2019, 11:49

                                @jsulm I have uninstalled all qt related dependencies and again installed qt5. Please check the screenshot(there is no option to fix the font size to normal in ubuntu mate,as of now I have sent the picture of the whole screen ).
                                After reinstalling qt5,
                                0_1564746548055_qt kit error.png

                                J Offline
                                J Offline
                                jsulm
                                Lifetime Qt Champion
                                wrote on 2 Aug 2019, 11:53 last edited by
                                #15

                                @malathi-k Are you aware that this screenshot is way too small to contain any useful information? In fact it contains less information than your previous screenshots. So, what should I check?
                                Why don't you make a bigger screenshot?
                                And did you do what I suggested before - put mouse cursor over the yellow exclamation mark?

                                https://forum.qt.io/topic/113070/qt-code-of-conduct

                                J.HilkJ 1 Reply Last reply 2 Aug 2019, 12:29
                                0
                                • J jsulm
                                  2 Aug 2019, 11:53

                                  @malathi-k Are you aware that this screenshot is way too small to contain any useful information? In fact it contains less information than your previous screenshots. So, what should I check?
                                  Why don't you make a bigger screenshot?
                                  And did you do what I suggested before - put mouse cursor over the yellow exclamation mark?

                                  J.HilkJ Offline
                                  J.HilkJ Offline
                                  J.Hilk
                                  Moderators
                                  wrote on 2 Aug 2019, 12:29 last edited by
                                  #16

                                  @jsulm I think the problem is, the fact, that what we see is the entire screenshot of OP's desktop.

                                  How anyone can work on a 592 x 448 Screen is beyond me. I don't know what the minimal resolution of QtCreator is, but I would bet it higher than that.


                                  Be aware of the Qt Code of Conduct, when posting : https://forum.qt.io/topic/113070/qt-code-of-conduct


                                  Q: What's that?
                                  A: It's blue light.
                                  Q: What does it do?
                                  A: It turns blue.

                                  JonBJ 1 Reply Last reply 2 Aug 2019, 13:08
                                  2
                                  • J.HilkJ J.Hilk
                                    2 Aug 2019, 12:29

                                    @jsulm I think the problem is, the fact, that what we see is the entire screenshot of OP's desktop.

                                    How anyone can work on a 592 x 448 Screen is beyond me. I don't know what the minimal resolution of QtCreator is, but I would bet it higher than that.

                                    JonBJ Offline
                                    JonBJ Offline
                                    JonB
                                    wrote on 2 Aug 2019, 13:08 last edited by
                                    #17

                                    @j-hilk
                                    You're right. It's 2019 now, everyone should be working on 640x480 by now ;-)

                                    A 1 Reply Last reply 2 Aug 2019, 14:16
                                    1
                                    • JonBJ JonB
                                      2 Aug 2019, 13:08

                                      @j-hilk
                                      You're right. It's 2019 now, everyone should be working on 640x480 by now ;-)

                                      A Offline
                                      A Offline
                                      aha_1980
                                      Lifetime Qt Champion
                                      wrote on 2 Aug 2019, 14:16 last edited by
                                      #18

                                      @jonb AFAIK, the minimal vertical resolution to display the settings dialog is 600 px. That was done in times the netbooks were familiar which had 1024x600 or so resolution.

                                      Regards

                                      Qt has to stay free or it will die.

                                      1 Reply Last reply
                                      1
                                      • I Offline
                                        I Offline
                                        iieklund
                                        wrote on 9 Aug 2019, 06:32 last edited by
                                        #19

                                        Hi @Malathi-K

                                        I'd recommed to use the Qt Online installer. With that you can install latest Qt packages and the QtCreator as well. The installer will automatically install Kits (registers compilers and debuggers) and in addition it will contain the examples and documentation of the selected Qt packages:

                                        https://download.qt.io/official_releases/online_installers/

                                        1 Reply Last reply
                                        0

                                        • Login

                                        • Login or register to search.
                                        • First post
                                          Last post
                                        0
                                        • Categories
                                        • Recent
                                        • Tags
                                        • Popular
                                        • Users
                                        • Groups
                                        • Search
                                        • Get Qt Extensions
                                        • Unsolved