gpt4 book ai didi

python - GitHub 操作 setup-python 停止工作

转载 作者:行者123 更新时间:2023-12-05 04:19:52 26 4
gpt4 key购买 nike

下面是我的工作流程文件,它以前一直有效,我没有改变任何东西。

env:
PYTHON_VERSION: '3.8.9'

jobs:
build:
name: build 🔧
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ env.PYTHON_VERSION }}
- run: mkdir file-icons product-icons
- run: python3 -m translate
- uses: actions/upload-artifact@v3
with:
name: build
path: |
file-icons/
product-icons/
thumbnails/
*.md
package.json

今天决定停工🥲错误:未找到带有 arch x64 的版本 3.8.9 enter image description here

这是调试日志记录

##[debug]x64===x64 && linux===linux 对我来说毫无意义,它找到了一个匹配然后继续前进 enter image description here

之前是什么 enter image description here

最佳答案

已解决。 GitHub actions 最近将 ubuntu-latest 从 20.04 更新到 22.04

22.04 上的 setup-python 操作尚不支持某些版本的 python(目前他们不希望支持旧的 python 版本,例如 3.8.9)

解决方案:

选项一 - 将 ubuntu 设置为 20.0.4(根据 GitHub 上的运行器图像问题建议的选项 https://github.com/actions/runner-images/issues/6399)

选项二 - 使用 python 3.8.12 或更新版本

关于python - GitHub 操作 setup-python 停止工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/74673048/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com