Answers for "package my python code to run as application"

C
9

how to launch an application using python

import subprocess

subprocess.Popen("C:\\Windows\\System32\\notepad.exe") #This will launch notepad But you can enter the path of an executable and this will launch it.
Posted by: Guest on August-31-2021
0

python project script run

import os
import sys
sys.path.append(os.path.join(os.path.dirname(__file__),'../../'))
import src.mymodules.module1
Posted by: Guest on June-16-2021

Code answers related to "package my python code to run as application"

Code answers related to "C"

Browse Popular Code Answers by Language