Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. General talk
  3. Brainstorm
  4. trying to open what i started from Mac on Windows

trying to open what i started from Mac on Windows

Scheduled Pinned Locked Moved Unsolved Brainstorm
7 Posts 2 Posters 1.7k Views 2 Watching
  • 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.
  • Y Offline
    Y Offline
    yklee
    wrote on last edited by
    #1

    My partner created a Python&PyQt5 program on his Macintosh and he sent me the whole file. (as in Zip) I have unlocked it and is trying to open it on Python3.7
    we used the same version of Python and PyQt5. but i have trouble.
    I keep getting the error saying "This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem. "
    so I have tried to reinstall it via 'cmd'. you know, pip install ..etc
    it still doesn't work.. could anyone help me? :(( it's pretty urgent

    1 Reply Last reply
    0
    • SGaistS Offline
      SGaistS Offline
      SGaist
      Lifetime Qt Champion
      wrote on last edited by
      #2

      Hi and welcome to devnet,

      How exactly did you install Qt and PyQt5.

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

      Y 1 Reply Last reply
      0
      • Y Offline
        Y Offline
        yklee
        wrote on last edited by
        #3

        i opened cmd,

        1. typed in
          "cd C:\users..etc." <-- location of my Python 37 script
        2. pip install PyQt5
        3. pip install PyQt5-tools
        1 Reply Last reply
        0
        • SGaistS SGaist

          Hi and welcome to devnet,

          How exactly did you install Qt and PyQt5.

          Y Offline
          Y Offline
          yklee
          wrote on last edited by
          #4

          @SGaist Am I being too vague with my question? what else should I be explaining? T.T

          1 Reply Last reply
          0
          • SGaistS Offline
            SGaistS Offline
            SGaist
            Lifetime Qt Champion
            wrote on last edited by
            #5

            Which exact versions did you get ?
            Did you try to start a small dummy Qt application ?

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

            Y 1 Reply Last reply
            0
            • SGaistS SGaist

              Which exact versions did you get ?
              Did you try to start a small dummy Qt application ?

              Y Offline
              Y Offline
              yklee
              wrote on last edited by
              #6

              @SGaist I don't know what dummy Qt application...
              PyQt5 and Python 3.7 32bit

              1 Reply Last reply
              0
              • SGaistS Offline
                SGaistS Offline
                SGaist
                Lifetime Qt Champion
                wrote on last edited by
                #7
                #!/usr/bin/env python
                
                import sys
                
                from PyQt5.QtWidgets import QApplication
                from PyQt5.QtWidgets import QWidget
                
                
                if __name__ == "__main__":
                
                    app = QApplication(sys.argv)
                    widget = QWidget()
                    widget.show()
                    sys.exit(app.exec_())
                

                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
                3

                • Login

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