File size: 2,328 Bytes
d0ba97f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
print("Wait..")

def test():
    import gradio as gr
    
    def analyze_text(text):
        # Lakukan analisis atau pemrosesan teks di sini
        result = f"Anda memasukkan teks: {text}"
        return result
    
    iface = gr.Interface(
        fn=analyze_text,
        inputs=gr.Textbox(),  # Menggunakan input textbox
        outputs="text"  # Menetapkan output ke tipe teks
    )

    iface.launch()

def process():
    import subprocess

    # def uninstall_and_install_gradio(version):
    #     # Uninstall current Gradio
    #     uninstall_command = ["pip", "uninstall", "gradio", "-y"]
    #     subprocess.run(uninstall_command)
        
    #     # Install specific version of Gradio
    #     install_command = ["pip", "install", f"gradio=={version}"]
    #     subprocess.run(install_command)
        
    # # Gantilah "3.41.2" dengan versi Gradio yang diinginkan
    # desired_version = "3.41.2"
        
    # # Periksa versi Gradio yang terinstal
    # current_version_command = ["pip", "show", "gradio"]
    # result = subprocess.run(current_version_command, capture_output=True, text=True)
    # current_version = None
    
    # if "Version" in result.stdout:
    #     current_version = result.stdout.split("Version:")[1].strip()
    
    # # Cek dan lakukan uninstall dan install jika versi tidak sesuai
    # if current_version != desired_version:
    #     uninstall_and_install_gradio(desired_version)
    #     print(f"Gradio has been updated to version {desired_version}")
    # else:
    #     print(f"Gradio is already at version {desired_version}")
    
    python_script = "entry_with_update.py"
    
    # Argument yang ingin Anda tambahkan
    # additional_arguments = ["--in-browser", "--all-in-fp32", "--directml", "--debug-mode", "--multi-user", "--always-cpu", "--is-windows-embedded-python"]
    additional_arguments = ["--disable-in-browser", "--attention-split", "--always-cpu"]
    
    # Gabungkan semua argumen
    PIP = ["pip", "install", "-r", "requirements_versions.txt"]
    command = ["python", python_script] + additional_arguments
    
    # Jalankan skrip menggunakan subprocess
    subprocess.run(PIP)
    print("Installing..")
    
    subprocess.run(command)# Menjalankan file batch
    print("Running..")
    # subprocess.run([batch_file_path], shell=True)

process()