John6666 commited on
Commit
9933693
·
verified ·
1 Parent(s): 0af5791

Upload 4 files

Browse files
Files changed (4) hide show
  1. README.md +13 -12
  2. app.py +12 -0
  3. packages.txt +1 -0
  4. requirements.txt +1 -0
README.md CHANGED
@@ -1,12 +1,13 @@
1
- ---
2
- title: Test Apt Get Libc6
3
- emoji: 🔥
4
- colorFrom: gray
5
- colorTo: red
6
- sdk: gradio
7
- sdk_version: 5.34.2
8
- app_file: app.py
9
- pinned: false
10
- ---
11
-
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
1
+ ---
2
+ title: package libc6 test
3
+ emoji: 🙄
4
+ colorFrom: indigo
5
+ colorTo: purple
6
+ sdk: gradio
7
+ sdk_version: 5.32.1
8
+ app_file: app.py
9
+ pinned: false
10
+ license: mit
11
+ ---
12
+
13
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
app.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+
3
+ def test():
4
+ return "test"
5
+
6
+ with gr.Blocks() as demo:
7
+ run_button = gr.Button("Run", variant="primary")
8
+ info = gr.Textbox(label="Output", value="", show_copy_button=True)
9
+
10
+ run_button.click(test, None, [info])
11
+
12
+ demo.launch()
packages.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ python3-clang
requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ huggingface_hub