git clone https://github.com/Significant-Gravitas/Auto-GPT.git
下载完成后,cd 到项目路径下
cd Auto-GPT
安装依赖
运行以下代码安装所需要的依赖
pip install -r requirements.txt
3.获取自己的OpenAI的密钥,
获取:https://platform.openai.com/account/api-keys
创建自己的密钥以后,在AutoGPT文件下找到配置文件:.env.template ,在里面替换自己的openAI key
4.运行 AutoGPT
以上步骤完成后,终端输入以下命令,就可以使用 AutoGPT 了
python -m autogpt
如果想在使用过程中,查看具体AutoGPT 是否报错,可以加上 –debug 参数
python -m autogpt --debug
使用 AutoGPT 需要注意的一些问题:
1,openAI 接口,SSL 认证失败 443
ssl.SSLEOFError: EOF occurred in violation of protocol (_ssl.c:1131)requests.exceptions.SSLError: HTTPSConnectionPool(host=’openaipublic.blob.core.windows.net’, port=443): Max retries exceeded with url: /encodings/cl100k_base.tiktoken (Caused by SSLError(SSLEOFError(8, ‘EOF occurred in violation of protocol (_ssl.c:1131)’)))
pip install urllib3==1.25.11
重点说明下,如果你在中国大陆,由于终端走的 google 搜索 是在 IP 层,不在应用层,所以一般应用层的梯子也是无法使用的,建议使用Clash 并开启TUN模式!
Clash 开源项目:
【GitHub:https://github.com/Dreamacro/clash】、Clash 需要配合ip节点进行使用,如果你不清楚使用,请勿随便开启。
图形化教程、这里是采用腾讯云服务器(新加坡云服务器)给大家演示:
1、服务器系统是ubuntu22.04、命令:
git clone https://github.com/Significant-Gravitas/Auto-GPT.git
下载完成进入cd 到项目路径下命令:cd Auto-GPT
运行以下代码安装所需要的依赖
pip install -r requirements.txt
以上步骤完成后,终端输入以下命令,就可以使用 AutoGPT 了