Skip to content

Commit

Permalink
[Docs] add conda env create (InternLM#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinNuNu authored Oct 8, 2023
1 parent 22b9dc5 commit 800eef1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,13 @@ XTuner is a toolkit for efficiently fine-tuning LLM, developed by the [MMRazor](

### Installation

- It is recommended to build a Python-3.10 virtual environment using conda

```bash
conda create --name xtuner-env python=3.10 -y
conda activate xtuner-env
```

- Install XTuner via pip

```shell
Expand Down
7 changes: 7 additions & 0 deletions README_zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,13 @@ XTuner 是一个轻量级微调大语言模型的工具库,由 [MMRazor](https

### 安装

- 推荐使用 conda 先构建一个 Python-3.10 的虚拟环境

```bash
conda create --name xtuner-env python=3.10 -y
conda activate xtuner-env
```

- 通过 pip 安装 XTuner:

```shell
Expand Down

0 comments on commit 800eef1

Please sign in to comment.