chart-gpt本地部署

记录chart-gpt的安装部署历程,此项目来自github开源项目

部署

首先,请先克隆此存储库:

bash
git clone https://github.com/whoiskatrin/chart-gpt.git
cd chart-gpt

然后复制模板 cp .env.example .env.env.example 添加您的 PaLM API 密钥:

bash
BARD_KEY="your-api-key"

然后安装依赖项并启动开发服务器:

bash
npm install
npm run dev
# or
yarn
yarn dev

这将在 http://localhost:3000 启动开发服务器。

222


在 Windows

创建虚拟环境:

plaintext
python -m venv venv
激活虚拟环境:
plaintext
venv\Scripts\activate