docs: add conda fallback install command

This commit is contained in:
wantsong 2026-06-14 00:08:09 +08:00
parent fa61d46933
commit deed276fa1
1 changed files with 12 additions and 0 deletions

View File

@ -33,6 +33,18 @@ If the environment already exists:
conda activate skills-vault 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. Most lightweight Skills should use this shared environment. Create a dedicated environment only when a Skill has conflicting or heavy dependencies.
## Install One Skill ## Install One Skill