Files
vibeline/setup.sh
hzrd149 f3cd99a471 Docker compose (#2)
* Add dockerfile
Add example docker compose
Add docker build action
Update extract.sh to use faster-whisper
Update src/extract.py to check and download ollama models

* remove multi-platform build

* add vibeline-ui to docker compose

* Fix VOICE_MEMOS_DIR variable being ignored in some files

* remove requirement for faster-whisper since it comes with whisper-ctranslate2
2025-04-07 11:47:27 +01:00

18 lines
450 B
Bash
Executable File

#!/bin/bash
# Check if virtual environment exists
if [ ! -d "vibenv" ]; then
echo "Creating virtual environment..."
python3 -m venv vibenv
fi
# Activate virtual environment
echo "Activating virtual environment..."
[ -d "vibenv" ] && source vibenv/bin/activate
# Install requirements
echo "Installing requirements..."
pip3 install -r requirements.txt
echo "Setup complete! Virtual environment is activated and requirements are installed."