Update app.py
Browse files
app.py
CHANGED
@@ -57,11 +57,11 @@ def process():
|
|
57 |
command = ["python", python_script] + additional_arguments
|
58 |
|
59 |
# Jalankan skrip menggunakan subprocess
|
60 |
-
subprocess.run(PIP)
|
61 |
print("Installing..")
|
|
|
62 |
|
63 |
-
subprocess.run(command)# Menjalankan file batch
|
64 |
print("Running..")
|
|
|
65 |
# subprocess.run([batch_file_path], shell=True)
|
66 |
|
67 |
process()
|
|
|
57 |
command = ["python", python_script] + additional_arguments
|
58 |
|
59 |
# Jalankan skrip menggunakan subprocess
|
|
|
60 |
print("Installing..")
|
61 |
+
subprocess.run(PIP)
|
62 |
|
|
|
63 |
print("Running..")
|
64 |
+
subprocess.run(command)# Menjalankan file batch
|
65 |
# subprocess.run([batch_file_path], shell=True)
|
66 |
|
67 |
process()
|