Devakumar868 commited on
Commit
f86c823
Β·
verified Β·
1 Parent(s): cf0e0e2

Delete setup.sh

Browse files
Files changed (1) hide show
  1. setup.sh +0 -19
setup.sh DELETED
@@ -1,19 +0,0 @@
1
- #!/usr/bin/env bash
2
-
3
- echo "πŸ”§ Starting custom setup..."
4
-
5
- # Install numpy first to avoid conflicts
6
- echo "πŸ“¦ Installing NumPy..."
7
- pip install --no-cache-dir numpy==1.24.3
8
-
9
- echo "πŸ“¦ Installing CUDA-enabled PyTorch..."
10
- # Install CUDA-enabled PyTorch
11
- pip install --no-cache-dir \
12
- torch==2.1.0 torchvision==0.16.0 torchaudio==2.1.0 \
13
- --index-url https://download.pytorch.org/whl/cu118
14
-
15
- echo "πŸ“‹ Installing remaining dependencies..."
16
- # Install remaining dependencies
17
- pip install --no-cache-dir -r requirements.txt
18
-
19
- echo "βœ… Setup complete!"