From 8748cc4dedc6170675ee8cb9f52e45936a8693ef Mon Sep 17 00:00:00 2001 From: fanpt <320622572@qq.com> Date: Wed, 6 Mar 2024 09:42:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0readme=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..1a94fa2 --- /dev/null +++ b/README.md @@ -0,0 +1,36 @@ +# virtual_patient_qa + +虚拟病人问答系统 + +## 安装说明 + +这个项目需要在 Conda 环境中运行。以下是安装的步骤: + +### 1. 安装 Conda + +如果您尚未安装 Conda,请根据您的操作系统安装 Miniconda 或 Anaconda。您可以从以下链接下载并安装 Conda: + +- [Miniconda](https://docs.conda.io/en/latest/miniconda.html) +- [Anaconda](https://www.anaconda.com/products/distribution) + +### 2. 创建虚拟环境 + +打开终端(或命令提示符),并输入以下命令以创建名为`qa_env`的 Conda 虚拟环境,确保使用 Python 3.10: + +```bash +conda create --name qa_env python=3.10 +``` + +### 3. 激活虚拟环境 +一旦环境创建完成,您需要激活虚拟环境。在 Windows 上,您可以使用以下命令 + +```bash +conda activate qa_env +``` + +### 4. 进入项目目录,运行接口程序 + +``` +cd virtual_patient_qa +python qa_Ask +``` \ No newline at end of file