From deed276fa1a298c304510130c256d57a52444989 Mon Sep 17 00:00:00 2001 From: wantsong Date: Sun, 14 Jun 2026 00:08:09 +0800 Subject: [PATCH] docs: add conda fallback install command --- docs/installation.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/installation.md b/docs/installation.md index ccab009..78b8d5c 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -33,6 +33,18 @@ If the environment already exists: conda activate skills-vault ``` +If `conda env create -f environment.yml` fails in Codex or another non-interactive Windows shell because of progress output, solver plugin, or root environment directory issues, create the environment explicitly under the user env directory: + +```powershell +C:\Users\wangq\miniconda3\Scripts\conda.exe create -p C:\Users\wangq\.conda\envs\skills-vault python=3.11 pip -y --json --solver classic +``` + +Then use: + +```powershell +conda activate C:\Users\wangq\.conda\envs\skills-vault +``` + Most lightweight Skills should use this shared environment. Create a dedicated environment only when a Skill has conflicting or heavy dependencies. ## Install One Skill