Whisper-WebUI / Install.sh
jhj0517
add temporal fix
58cc580
raw
history blame
403 Bytes
#!/bin/bash
if [ ! -d "venv" ]; then
echo "Creating virtual environment..."
python -m venv venv
fi
source venv/bin/activate
pip install -r requirements.txt && echo "Requirements installed successfully." || {
echo ""
echo "Requirements installation failed. Please remove the venv folder and run the script again."
deactivate
exit 1
}
pip install tokenizers==0.19.1
deactivate