Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Run python script in Qt
Forum Updated to NodeBB v4.3 + New Features

Run python script in Qt

Scheduled Pinned Locked Moved Solved General and Desktop
31 Posts 9 Posters 17.3k Views 3 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.
  • N NotYourFan

    put python -c 'print "Hello World"' in p.start

    jsulmJ Offline
    jsulmJ Offline
    jsulm
    Lifetime Qt Champion
    wrote on last edited by
    #21

    @NotYourFan It doesn't work like this. You have to put the command as first parameter to start() and all parameters for the command as parameter list.

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

    Gojir4G 1 Reply Last reply
    1
    • jsulmJ jsulm

      @NotYourFan It doesn't work like this. You have to put the command as first parameter to start() and all parameters for the command as parameter list.

      Gojir4G Offline
      Gojir4G Offline
      Gojir4
      wrote on last edited by
      #22

      @jsulm Are you sure about that ?
      from Qt Doc:

      QProcess process;
      process.start("del /s *.txt");
      
      1 Reply Last reply
      0
      • N Offline
        N Offline
        NotYourFan
        wrote on last edited by NotYourFan
        #23

        @jsulm i readed in the Qt Doc.
        @Gojir4 you are right.
        @Pablo-J-Rogina thx for your Suggestion … but i should / want to do it with QProcess …

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

          Hi,

          @NotYourFan just in case, did you try to compare the environment variables of your QProcess object and the one you have when running e.g. from a terminal ?

          @Gojir4 You are right about that specific overload, but the documentation also states that this overload should be avoided if possible.

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

          Gojir4G 1 Reply Last reply
          2
          • SGaistS SGaist

            Hi,

            @NotYourFan just in case, did you try to compare the environment variables of your QProcess object and the one you have when running e.g. from a terminal ?

            @Gojir4 You are right about that specific overload, but the documentation also states that this overload should be avoided if possible.

            Gojir4G Offline
            Gojir4G Offline
            Gojir4
            wrote on last edited by
            #25

            @SGaist My bad. Thanks for clarification !

            1 Reply Last reply
            0
            • N NotYourFan

              put python -c 'print "Hello World"' in p.start

              JonBJ Online
              JonBJ Online
              JonB
              wrote on last edited by
              #26

              @NotYourFan
              I am lost as to where you are now.

              Assuming it's still crashing --- is that right? --- surely you want to break it down to simplify now. Start with:

                  params << "-V";
                  p.start("C:\\development\\Python\\Python37\\python.exe", params);
                  p.waitForFinished(-1);
                  QString p_stdout = p.readAll();
              

              What exactly happens?

              1 Reply Last reply
              2
              • N Offline
                N Offline
                NotYourFan
                wrote on last edited by
                #27

                @JonB, i get a error Message: ….

                ModuleNotFoundError: No module named 'encodings'
                
                JonBJ 1 Reply Last reply
                0
                • N NotYourFan

                  @JonB, i get a error Message: ….

                  ModuleNotFoundError: No module named 'encodings'
                  
                  JonBJ Online
                  JonBJ Online
                  JonB
                  wrote on last edited by JonB
                  #28

                  @NotYourFan
                  OK! So, you can forget about your createJSON.py script and anything it does.

                  I don't know why you get this when spawning from Qt but not when running your python.exe directly from a command prompt. Either it's something to do with it sending output to a pipe you are reading from, or it's to do with your general Python environment being different between the two situations.

                  You want now to Google for python ModuleNotFoundError: No module named 'encodings'. There are posts/suggestions. Looks to me like it might be to do with whether you are using a virtual environment or not, but I'm sure one of the hits will sort you out....

                  aha_1980A 1 Reply Last reply
                  3
                  • JonBJ JonB

                    @NotYourFan
                    OK! So, you can forget about your createJSON.py script and anything it does.

                    I don't know why you get this when spawning from Qt but not when running your python.exe directly from a command prompt. Either it's something to do with it sending output to a pipe you are reading from, or it's to do with your general Python environment being different between the two situations.

                    You want now to Google for python ModuleNotFoundError: No module named 'encodings'. There are posts/suggestions. Looks to me like it might be to do with whether you are using a virtual environment or not, but I'm sure one of the hits will sort you out....

                    aha_1980A Offline
                    aha_1980A Offline
                    aha_1980
                    Lifetime Qt Champion
                    wrote on last edited by
                    #29

                    @JonB I can imagine that the Environment inside Qt Creator is different (e.g. PATH) and therefore other (incompatible) executables and libraries are found.

                    @NotYourFan: You should carefully check the Run Environment variables inside Qt Creator, especially PATH. That's all I can say for now.

                    Regards

                    Qt has to stay free or it will die.

                    1 Reply Last reply
                    3
                    • N Offline
                      N Offline
                      NotYourFan
                      wrote on last edited by
                      #30

                      @JonB, when i run my createJSON.py from the console, everything working fine.
                      @aha_1980 thanks !! I will checked immediately.

                      1 Reply Last reply
                      0
                      • N Offline
                        N Offline
                        NotYourFan
                        wrote on last edited by
                        #31

                        @aha_1980 !!!!!
                        Thank you :=)

                        That was the Problem.
                        I use for "Debug" MinGW (MinGW included python2.7 and set a PYTHON variable)
                        So now i tried like this:

                        QProcess cmd;
                        QProcessEnviroment env = QProcessnviroment::systemEnviroment();
                        QProcessEnviroment envUpdate;
                        
                        envUpdate.inser("PATH", env.value("PATH"));
                        cmd.setProcessEnviroment(envUpdate)
                        cmd.start("python.exe C:\\Users\\...\\Desktop\\...\\createJSON.py")
                        cmd.waitForFinished();
                        

                        Now it works :)

                        Thank you @all for your standby

                        1 Reply Last reply
                        5
                        • J JCBaraza referenced this topic on

                        • Login

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