We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a927d1 commit 9146daeCopy full SHA for 9146dae
1 file changed
README_zh-CN.md
@@ -95,12 +95,16 @@
95
96
### 💻 环境搭建
97
98
-我们强烈建议使用 `conda` 来管理您的 Python 环境。
+我们强烈建议使用 `conda` 来管理您的 Python 环境。OpenCompass 的常规安装和完整安装已经支持
99
+Python 3.12。如果您的评测依赖基于 `pyext` 的代码执行类数据集,请改用 Python 3.10:
100
+`pyext==0.7` 会在 Python >=3.11 时被跳过,因为它依赖的 `inspect.getargspec` 已在
101
+Python 3.11 中移除。缺少 `pyext` 时,APPS(`apps`、`apps_mini`)、TACO 和
102
+LiveCodeBench Code Generation 将不可用。
103
104
- #### 创建虚拟环境
105
106
```bash
- conda create --name opencompass python=3.10 -y
107
+ conda create --name opencompass python=3.12 -y
108
conda activate opencompass
109
```
110
0 commit comments