chatgpt搭建

chatgpt两步搭建大法

部署docker环境

  • 下载docker
bash 复制代码
curl -fsSL https://get.docker.com -o get-docker.sh
  • 安装docker
bash 复制代码
sh get-docker.sh
  • 运行docker服务
bash 复制代码
systemctl start docker
  • 查看运行状态
bash 复制代码
systemctl status docker
  • 设置docker开机自启
bash 复制代码
systemctl enable docker

部署chatgpt

bash 复制代码
docker run --name chatgpt-next-web -d -p 8080:3000 --restart=always \
-e OPENAI_API_KEY=换成你的中转key \
-e CODE=123456 \
-e HIDE_USER_API_KEY=1 \
-e BASE_URL=https://api.openai-hk.com   yidadaa/chatgpt-next-web

完结

相关推荐
Augustzero4 小时前
Codex Desktop 新建会话无法发送消息:一次由旧版 CLI 路径引发的故障排查
chatgpt·agent
xn71331 天前
ChatGPT 生图如何自动导入 Astro 内容站:base64 桥接、frontmatter 更新和封面校验
chatgpt
gptAI_plus2 天前
用 React + TypeScript 写一个世界杯淘汰赛对阵树组件
chatgpt·openai
AI工程效率栈6 天前
AI 帮你补异常处理时,新人最容易犯的错:把失败悄悄变成成功
gpt·chatgpt
凌奕9 天前
让你的 AI 编程助手「偷懒」:50k Star 的 Ponytail,让 Agent 少写一半代码
chatgpt·agent·claude
星落zx15 天前
Spring Boot 多模型集成:优雅调用全球主流大模型
人工智能·spring boot·chatgpt
爱读书的小胖15 天前
无偿分享ChatGPT Image 2画图网页与并发绘图python程序【Ai绘图】
开发语言·python·chatgpt
码农小旋风15 天前
Claude Code 基础用法大全:对话、分析、修改、测试、Git 和工作流
人工智能·git·chatgpt·claude
武子康15 天前
调查研究-180 roboflow/supervision:计算机视觉工程里的“胶水层“,为什么值得关注?
人工智能·opencv·计算机视觉·chatgpt·llm·向量化
果子耶耶15 天前
让大模型帮我写单元测试,5个模型的覆盖率和边界处理能力实测
chatgpt·单元测试