Answers for "how to open a desktop application using python"

2

open applications by python

dir = 'C:\\myprogram.exe'

import os
os.startfile(dir)
os.system(dir)

import subprocess
subprocess.Popen([dir])
subprocess.call(dir)
Posted by: Guest on July-20-2020
3

how to make a desktop application in python

Some libraries in Python for desktop app development:
  1. WxPython
  2. Tkinter
  3. Kivy
  4. PyQt5
Posted by: Guest on March-30-2021

Code answers related to "how to open a desktop application using python"

Python Answers by Framework

Browse Popular Code Answers by Language