mirror of
https://github.com/aljazceru/vibeline.git
synced 2025-12-18 15:04:24 +01:00
18 lines
450 B
Bash
Executable File
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."
|