Archisman Karmakar commited on
Commit
b4cfb6e
·
unverified ·
1 Parent(s): 48fa496

Update deploy_to_HF_space.yml

Browse files
.github/workflows/deploy_to_HF_space.yml CHANGED
@@ -23,10 +23,17 @@ jobs:
23
  with:
24
  python-version: '3.12'
25
 
26
- - name: Install dependencies
27
  run: |
28
- python -m pip install --upgrade pip
 
 
 
 
 
29
 
 
 
30
  pip install poetry
31
  poetry install
32
 
 
23
  with:
24
  python-version: '3.12'
25
 
26
+ - name: Environment Setup & Install system packages from packages.txt
27
  run: |
28
+ sudo add-apt-repository universe
29
+ sudo apt-get update
30
+ sudo xargs -a packages.txt apt-get install -y
31
+
32
+ - name: Upgrade pip
33
+ run: python -m pip install --upgrade pip
34
 
35
+ - name: Install dependencies
36
+ run: |
37
  pip install poetry
38
  poetry install
39