alexnasa commited on
Commit
69374f7
·
verified ·
1 Parent(s): a730161

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -47,10 +47,9 @@ import subprocess
47
 
48
  # install_cuda_toolkit()
49
 
50
- !apt-get update
51
- !apt-get install cuda-toolkit-12-6
52
-
53
  # my_env = os.environ.copy()
 
 
54
  subprocess.run(["pip", "install","diso"], check=True)
55
 
56
 
 
47
 
48
  # install_cuda_toolkit()
49
 
 
 
 
50
  # my_env = os.environ.copy()
51
+ subprocess.run(["apt-get", "update"], check=True)
52
+ subprocess.run(["apt-get", "install", "cuda-toolkit-12-6"], check=True)
53
  subprocess.run(["pip", "install","diso"], check=True)
54
 
55