cstr commited on
Commit
e8a4e52
·
verified ·
1 Parent(s): b157f4b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -6
app.py CHANGED
@@ -10,12 +10,12 @@ from pydub import AudioSegment
10
 
11
  # Clone and install faster-whisper from GitHub
12
  # (we should be able to do this in build.sh in a hf space)
13
- #try:
14
- # subprocess.run(["git", "clone", "https://github.com/SYSTRAN/faster-whisper.git"], check=True)
15
- # subprocess.run(["pip", "install", "-e", "./faster-whisper"], check=True)
16
- #except subprocess.CalledProcessError as e:
17
- # print(f"Error during faster-whisper installation: {e}")
18
- # sys.exit(1)
19
 
20
  # Add the faster-whisper directory to the Python path
21
  sys.path.append("./faster-whisper")
 
10
 
11
  # Clone and install faster-whisper from GitHub
12
  # (we should be able to do this in build.sh in a hf space)
13
+ try:
14
+ subprocess.run(["git", "clone", "https://github.com/SYSTRAN/faster-whisper.git"], check=True)
15
+ subprocess.run(["pip", "install", "-e", "./faster-whisper"], check=True)
16
+ except subprocess.CalledProcessError as e:
17
+ print(f"Error during faster-whisper installation: {e}")
18
+ sys.exit(1)
19
 
20
  # Add the faster-whisper directory to the Python path
21
  sys.path.append("./faster-whisper")