Mar2Ding commited on
Commit
dc26736
·
verified ·
1 Parent(s): 449d151

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -4,8 +4,8 @@ from typing import List, Tuple, Optional
4
  import spaces
5
 
6
  # Define the command to be executed
7
- command = ["python", "setup.py", "build_ext", "--inplace"]
8
-
9
  # Execute the command
10
  result = subprocess.run(command, capture_output=True, text=True)
11
 
 
4
  import spaces
5
 
6
  # Define the command to be executed
7
+ # command = ["python", "setup.py", "build_ext", "--inplace"]
8
+ command = ["pip", "install", "--no-build-isolation", "-e", "."]
9
  # Execute the command
10
  result = subprocess.run(command, capture_output=True, text=True)
11