asynchronousai commited on
Commit
06bc0e5
·
verified ·
1 Parent(s): dd9342d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -31,10 +31,8 @@ def check_dotnet_installed():
31
 
32
  def install_dotnet():
33
  print("Installing .NET SDK...")
34
-
35
- subprocess.run(["sudo", "apt-get", "update"], check=True, shell=True)
36
- subprocess.run(["sudo", "apt-get", "install", "-y", "dotnet-sdk-8.0"], check=True, shell=True)
37
- subprocess.run(["sudo", "apt-get", "install", "-y", "dotnet-runtime-8.0"], check=True, shell=True)
38
 
39
  print(".NET SDK has been installed.")
40
  def compile(cs):
 
31
 
32
  def install_dotnet():
33
  print("Installing .NET SDK...")
34
+
35
+ # Dont know what to do!?
 
 
36
 
37
  print(".NET SDK has been installed.")
38
  def compile(cs):