#!/bin/bash # Clone and install faster-whisper echo "downloading faster-whisper from git..." git clone https://github.com/SYSTRAN/faster-whisper.git cd faster-whisper pip install . cd .. # Clone and build CrispASR echo "downloading CrispASR from git..." git clone https://github.com/CrispStrobe/CrispASR.git cd CrispASR mkdir build cd build cmake .. -DCMAKE_PLATFORM_NO_VERSIONED_SONAME=ON -DWHISPER_BUILD_TESTS=OFF -DWHISPER_BUILD_EXAMPLES=OFF make -j$(nproc) cd ../..