gaunernst commited on
Commit
64e942f
·
1 Parent(s): 207bb7c

extract .deb and update LD_LIBRARY_PATH

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -11,7 +11,8 @@ if sys.platform == "linux":
11
  os.system(
12
  "wget http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.20_amd64.deb"
13
  )
14
- os.system("sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.20_amd64.deb")
 
15
 
16
  import cv2
17
  import gradio as gr
 
11
  os.system(
12
  "wget http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.20_amd64.deb"
13
  )
14
+ os.system("dpkg -x libssl1.1_1.1.1f-1ubuntu2.20_amd64.deb .")
15
+ os.environ["LD_LIBRARY_PATH"] = os.environ.get("LD_LIBRARY_PATH", "") + ":./usr/lib/x86_64-linux-gnu"
16
 
17
  import cv2
18
  import gradio as gr