diff --git a/.ci/Dockerfile b/.ci/Dockerfile index 03218fc..52b6798 100644 --- a/.ci/Dockerfile +++ b/.ci/Dockerfile @@ -11,6 +11,7 @@ RUN apt-get update && \ clang-19 lld-19 libc++-19-dev libc++abi-19-dev \ mingw-w64 g++-mingw-w64 \ git tar curl \ + python3 python3-pip \ && rm -rf /var/lib/apt/lists/* && \ update-alternatives --install /usr/bin/clang clang /usr/bin/clang-19 100 && \ update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-19 100 && \ diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 5706d85..caeafd1 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -51,10 +51,6 @@ jobs: run: | echo "开始构建Linux安装器..." - echo "安装Python3和pip..." - sudo apt-get update - sudo apt-get install -y python3 python3-pip - cd Installer/ConsoleInstaller # 确保pip已安装 if ! command -v pip3 &> /dev/null; then