From ba668a9b40da4dd923a4b3b1f07eb5203925cfd2 Mon Sep 17 00:00:00 2001 From: isadba Date: Wed, 31 May 2023 21:32:51 +0800 Subject: [PATCH] Update README.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Docker安装的MySQL密码与代码中的初始化密码不一致。 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 18dd30f80..2427b54d9 100644 --- a/README.md +++ b/README.md @@ -148,7 +148,7 @@ As our project has the ability to achieve ChatGPT performance of over 85%, there This project relies on a local MySQL database service, which you need to install locally. We recommend using Docker for installation. ```bash -$ docker run --name=mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=aa12345678 -dit mysql:latest +$ docker run --name=mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=aa123456 -dit mysql:latest ``` We use [Chroma embedding database](https://github.com/chroma-core/chroma) as the default for our vector database, so there is no need for special installation. If you choose to connect to other databases, you can follow our tutorial for installation and configuration. For the entire installation process of DB-GPT, we use the miniconda3 virtual environment. Create a virtual environment and install the Python dependencies.