JanuaryDesk commited on
Commit
c49ded2
1 Parent(s): 4bf380c
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -10,6 +10,8 @@ dotnet_install_commands = [
10
  "./dotnet-install.sh --version latest"
11
  ]
12
 
 
 
13
  try:
14
  print(subprocess.check_output("dotnet -list-sdk"))
15
  except:
@@ -18,7 +20,9 @@ except:
18
  for command in dotnet_install_commands:
19
  os.system(command)
20
 
21
- print(subprocess.check_output("dotnet -list-sdk"))
 
 
22
 
23
  import gradio as gr
24
 
 
10
  "./dotnet-install.sh --version latest"
11
  ]
12
 
13
+ print(os.environ["PATH"])
14
+
15
  try:
16
  print(subprocess.check_output("dotnet -list-sdk"))
17
  except:
 
20
  for command in dotnet_install_commands:
21
  os.system(command)
22
 
23
+ print(os.environ["PATH"])
24
+
25
+ # print(subprocess.check_output("dotnet -list-sdk"))
26
 
27
  import gradio as gr
28