From b6c43bc2a3d73e82b72944c688598f8ba3ad2ca2 Mon Sep 17 00:00:00 2001 From: hyeonggil <> Date: Sun, 15 Mar 2026 14:39:32 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20python3=20=EB=B0=8F=20pip=20=EC=A7=81?= =?UTF-8?q?=EC=A0=91=20=EC=84=A4=EC=B9=98=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/lotto-buy.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lotto-buy.yml b/.github/workflows/lotto-buy.yml index b802064..169ac88 100644 --- a/.github/workflows/lotto-buy.yml +++ b/.github/workflows/lotto-buy.yml @@ -12,8 +12,11 @@ jobs: steps: - uses: actions/checkout@v4 - - name: 의존성 설치 - run: pip3 install -r requirements.txt + - name: Python 및 의존성 설치 + run: | + apt-get update -qq + apt-get install -y python3 python3-pip python3-venv + pip3 install -r requirements.txt - name: Chrome 설치 uses: browser-actions/setup-chrome@v1