JLtan1024 commited on
Commit
03082e3
·
verified ·
1 Parent(s): 17f5371
Files changed (1) hide show
  1. setup.sh +0 -17
setup.sh DELETED
@@ -1,17 +0,0 @@
1
- #!/bin/bash
2
-
3
- # Install system-level dependencies
4
- echo "Installing system dependencies..."
5
- sudo apt update && sudo apt install -y libgl1
6
-
7
- # Create and activate virtual environment
8
- echo "Setting up Python virtual environment..."
9
- python3 -m venv venv
10
- source venv/bin/activate
11
-
12
- # Install Python packages
13
- echo "Installing Python dependencies..."
14
- pip install --upgrade pip
15
- pip install -r requirements.txt
16
-
17
- echo "Setup complete!"