From 6ae6187dddf07538e8cc2a5c029e62fd54a2c467 Mon Sep 17 00:00:00 2001 From: liqiannan Date: Sat, 11 Oct 2025 17:17:35 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=A2=9E=E5=8A=A0=E7=8E=AF=E5=A2=83?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- env-config.env | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 env-config.env diff --git a/env-config.env b/env-config.env new file mode 100644 index 0000000..4da783a --- /dev/null +++ b/env-config.env @@ -0,0 +1,13 @@ +# -------------------------- 原有配置(Node/JDK) -------------------------- +NODE_VERSION=20.13.1 # 根据你项目需求填写(如本地用18则填18) +JDK_VERSION=17 # 根据你项目需求填写(如本地用17则填17) + +# -------------------------- Conda 配置(基于你的 conda info) -------------------------- +# 1. 本地活跃的 Conda 环境名(从 info 中 "active environment: liqiannanPythonAI" 提取) +CONDA_ENV_NAME=liqiannanPythonAI + +# 2. 该环境的 Python 版本(从 info 中 "python version: 3.12.4.final.0" 提取) +CONDA_PYTHON_VERSION=3.12.4 + +# 3. Conda 镜像源(从 info 中 "channel URLs" 提取清华源,确保容器安装包和本地一样快) +CONDA_CHANNELS="https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main,https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free" \ No newline at end of file