pablocst commited on
Commit
31d35a6
1 Parent(s): 6dcf0c9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -4,7 +4,7 @@
4
 
5
  import os
6
 
7
- os.system("apt-get install xclip")
8
 
9
  import gradio as gr
10
  import nltk
@@ -68,7 +68,7 @@ def cp_text(input_text):
68
  try:
69
  pyclip.copy(input_text)
70
  except Exception as e:
71
- print("sudo apt-get install xclip")
72
  print(e)
73
 
74
 
 
4
 
5
  import os
6
 
7
+ #os.system("apt-get install xclip")
8
 
9
  import gradio as gr
10
  import nltk
 
68
  try:
69
  pyclip.copy(input_text)
70
  except Exception as e:
71
+ print("install package xclip")
72
  print(e)
73
 
74