Skip to content

Commit

Permalink
fix install dependency issue #push
Browse files Browse the repository at this point in the history
  • Loading branch information
yig319 committed Dec 6, 2024
1 parent 0981b4d commit 22e4914
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,15 @@ jobs:
with:
token: ${{ secrets.GH_TOKEN }}

- name: Install Conda
- name: Install System Dependencies
run: |
sudo apt-get update
sudo apt-get install -y wget
sudo apt-get install -y wget libjpeg-dev zlib1g-dev libfreetype6-dev \
liblcms2-dev libwebp-dev libtiff-dev \
libopenjp2-7 libavif-dev libgeos-dev
- name: Install Conda
run: |
wget -qO- https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh > miniconda.sh
bash miniconda.sh -b -p $HOME/miniconda
export PATH="$HOME/miniconda/bin:$PATH"
Expand Down

0 comments on commit 22e4914

Please sign in to comment.