Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. Language Bindings
  4. PyQt doesn't understand &

PyQt doesn't understand &

Scheduled Pinned Locked Moved Solved Language Bindings
28 Posts 6 Posters 10.0k 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.
  • U user4592357
    22 Feb 2018, 12:30

    @JonB
    i can't do anything using from PyQt4...

    J Offline
    J Offline
    JonB
    wrote on 23 Feb 2018, 09:08 last edited by
    #18

    @user4592357
    Look, I really don't where you are. But If you used pip3 install pyqt5 and you got PyQt4 something is really wrong. And if it did get PyQt5 but somehow your code only finds PyQt4 you are equally in a mess. So you need to sort this out before you go any further....

    1 Reply Last reply
    0
    • K Offline
      K Offline
      KevinKSyd
      wrote on 23 Feb 2018, 13:54 last edited by
      #19

      He said he was using:

      SIP version: 5.10
      PyQt version: 4.19.7

      I think he just switched those two around and is confused. The most current version of SIP is 4.19.7 and the most current version of PyQt is 5.10. There never has been a version of PyQt4 with that version number nor has SIP gotten to that version number yet.

      1 Reply Last reply
      1
      • U Offline
        U Offline
        user4592357
        wrote on 23 Feb 2018, 16:27 last edited by user4592357
        #20

        i know it's hard to guess but it's 'she' :)

        btw this happens on my new laptop where i only installed qt 5.10.1 and then pyqt5.
        but the same happened also on my former laptop where i had qt4 and installed pyqt5.

        i have no idea what's going on

        anyways, i downloaded the sources and wannabuild. got the following:

        $ python configure.py
        Error: Use the --qmake argument to explicitly specify a working Qt qmake.
        
        python.exe .\configure.py --qmake C:\Qt\Qt5.10.1\5.10.1\msvc2015_64\bin\qmake
        .exe
        Querying qmake about your Qt installation...
        Determining the details of your Qt installation...
        Error: Failed to determine the detail of your Qt installation. Try again using
        the --verbose flag to see more detail about the problem.
        
        1 Reply Last reply
        0
        • S Offline
          S Offline
          SGaist
          Lifetime Qt Champion
          wrote on 23 Feb 2018, 21:09 last edited by
          #21

          What do you get if you make it verbose ?

          By the way, you may avoid much of the hassle by using pip/pip3 do install PyQt5.

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

          U 1 Reply Last reply 24 Feb 2018, 05:36
          0
          • S SGaist
            23 Feb 2018, 21:09

            What do you get if you make it verbose ?

            By the way, you may avoid much of the hassle by using pip/pip3 do install PyQt5.

            U Offline
            U Offline
            user4592357
            wrote on 24 Feb 2018, 05:36 last edited by
            #22

            @SGaist
            i installled using the command at first place when i got all this mess.
            and this is --verbose

            python.exe .\configure.py --qmake C:\Qt\Qt5.10.1\5.10.1\msvc2015_64\bin\qmake
            .exe --verbose
            Querying qmake about your Qt installation...
            Determining the details of your Qt installation...
            C:\Qt\Qt5.10.1\5.10.1\msvc2015_64\bin\qmake.exe -o cfgtest_QtCore.mk cfgtest_QtCore.pro
            Project ERROR: Cannot run compiler 'cl'. Output:
            ===================
            ===================
            Maybe you forgot to setup the environment?
            Error: Failed to determine the detail of your Qt installation. Try again using
            the --verbose flag to see more detail about the problem.
            
            1 Reply Last reply
            0
            • S Offline
              S Offline
              SGaist
              Lifetime Qt Champion
              wrote on 24 Feb 2018, 21:50 last edited by
              #23

              From the looks of it, you're doing that from a console that's not configured to use Visual Studio 2015. You should either call the vcvars script with the correct parameters or start the console through the Visual Studio start menu.

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

              U 1 Reply Last reply 25 Feb 2018, 06:07
              0
              • S SGaist
                24 Feb 2018, 21:50

                From the looks of it, you're doing that from a console that's not configured to use Visual Studio 2015. You should either call the vcvars script with the correct parameters or start the console through the Visual Studio start menu.

                U Offline
                U Offline
                user4592357
                wrote on 25 Feb 2018, 06:07 last edited by user4592357
                #24

                @SGaist
                i opened vs native tools x64 cmd and run the install command - same output.

                i run C:\Program Files (x86)\Microsoft Visual Studio\2017\Professional\Common7\Tools\vsdevcmd\ext\vsvars.bat from vs tools->command prompt menu, then run the install command - same output.

                EDIT: i uninstalled current version and installed with pip install PyQt5 (and not pip3, as before) and got the lastest versions:

                Qt version: 5.10.0
                SIP version: 4.19.7
                PyQt version: 5.10
                

                but:
                pylint errors about imports aren't gone
                the letter isn't still underlined. it's how @KevinKSyd said - only shows on alt key press

                1 Reply Last reply
                0
                • S Offline
                  S Offline
                  SGaist
                  Lifetime Qt Champion
                  wrote on 25 Feb 2018, 21:45 last edited by
                  #25

                  Pylint might not find everything and you may have to help it searching for your dependencies.

                  As for the underline, it’s a Windows behavior.

                  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
                  0
                  • R Offline
                    R Offline
                    Rodrigo B.
                    wrote on 20 Feb 2021, 18:51 last edited by
                    #26

                    I thought "&" was not working in my PyQt Windows project menus, but it turned out that the underscore only appears when Alt is being pressed.

                    S 1 Reply Last reply 20 Feb 2021, 19:05
                    0
                    • R Rodrigo B.
                      20 Feb 2021, 18:51

                      I thought "&" was not working in my PyQt Windows project menus, but it turned out that the underscore only appears when Alt is being pressed.

                      S Offline
                      S Offline
                      SGaist
                      Lifetime Qt Champion
                      wrote on 20 Feb 2021, 19:05 last edited by
                      #27

                      @Rodrigo-B hi and welcome to devnet,

                      As already written, the accelerators are not permanently shown on Windows.

                      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
                      0
                      • S SGaist
                        20 Feb 2018, 21:06

                        Hi,

                        No it's not, the underline represent the accelerator you set by using the & sign in your action name.

                        L Offline
                        L Offline
                        lang2524
                        Banned
                        wrote on 23 Feb 2021, 16:44 last edited by
                        #28
                        This post is deleted!
                        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