目录
显示
官网地址: https://github.com/Significant-Gravitas/Auto-GPT
安装教程
- 检查git是否安装,执行:
git -v
如果已安装,跳过2,3 - 安装brew:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- 安装git:
brew install git
- 检查python是否安装,执行:
python3 -V
如果已安装,跳过5 - 进入 https://www.python.org/downloads/ ,下载并安装python
- 新建一个用于安装auto-gpt的文件夹。在终端中进入到新建的文件夹。
- 执行:
git clone https://github.com/Torantulino/Auto-GPT.git
- 执行:
cd Auto-GPT
- 执行:
pip install -r requirements.txt
- 执行:
cp .env.template .env
- 执行:
open .env
- 在新打开的文件中,搜索
OPENAI_API_KEY
,把等号右边的内容,替换成你的 chatGPT API Key。 如何获取具体看下方【如何获取API Key】,openai注册 方法看文尾 - 执行:
python -m autogpt
,大功告成
易出错点
- 第4步时,注意是大写的
V
- 第9步时,如果提示 pip command can not find之类的,则改执行
python3 -m pip install -r requirements.txt
- 第13步时,如果提示 python command can not find之类的,则改执行
python3 -m autogpt
如何获取 API Key
- 打开这个链接:https://platform.openai.com/account/billing/overview
- 点击
Set up paid account
按钮,然后在新弹出的窗口中,点击I'm an individual
,然后会弹出一个输入信用卡的界面。 - 输入你的信用卡信息,然后点击
Set up payment method
。如果你没有在这里可以使用的信用卡,可以进群联系群主。
- 配置完信用卡后,打开这个链接:https://platform.openai.com/account/api-keys
- 如下图所示,先点击
Create new secret key
,然后在弹窗中的输入框中,随便输入一个名字,例如autoGPT
。然后点击Create secret key
- 创建成功后,点击右边的复制按钮,把API Key复制出来,然后替在
.env
文件中OPENAI_API_KEY
等号右边的部分
openai注册,可以参考 教程:在国内如何注册OpenAI账号并试用ChatGPT