DO1DeepSeelChatBot / start.sh
Alejadro Sanchez-Giraldo
remove LD
1afabcf
raw
history blame contribute delete
409 Bytes
#!/bin/bash
echo "Setting up environment..."
# Create virtual environment if it doesn't exist
if [ ! -d "venv" ]; then
echo "Creating virtual environment..."
python3 -m venv venv
fi
# Activate virtual environment
source venv/bin/activate
# Install requirements
echo "Installing dependencies..."
pip install -r requirements.txt
# Start the app
echo "Launching your Hugging Face app!"
python app.py