Important: Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct
pyqt5, cmd, console
-
I want to open Minecraft server through PYQT.
The GUI is implemented, but I don't know how to open CMD in the GUI to run Java.
-
Hi and welcome to devnet,
Either use QProcess or the Python subprocess module.
-
Hello,
you can use moduleos
to run cmd in python
for example:import os os.system("echo hello")