這是本文件的舊版!
安裝 AutoGPT 紀錄
[x]在 Alpine 3.7
- 安裝環境 : PVE 內啟動一個 CT - alpine3.7 範本建立
- 結果在 pip install -r requirements.txt 出現以下錯誤
: Collecting black Downloading black-23.3.0-py3-none-any.whl (180 kB) ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 181.0/181.0 kB 6.2 MB/s eta 0:00:00 ERROR: Could not find a version that satisfies the requirement sourcery (from versions: none) ERROR: No matching distribution found for sourcery
安裝過程
- 更新與安裝 alpine 套件
apk update && apk upgrade apk add git python3 py3-pip
- 查看 python 版本是否高於 3.8
ct-autogpt:~# python3 --version Python 3.10.11 ct-autogpt:~# pip --version pip 22.3.1 from /usr/lib/python3.10/site-packages/pip (python 3.10)
- 下載與安裝 AutoGPT
git clone https://github.com/Torantulino/Auto-GPT.git cd Auto-GPT pip install -r requirements.txt :