Python Environments
Consistent Python environments prevent silent dependency drift and reduce debug time.
Naming Convention
Use one environment per project or per major experiment track.
Example:
triwei-llm-core
triwei-diffusion-lab
triwei-rag-stack
Base Workflow
- Create the environment.
- Install only required dependencies.
- Freeze versions after successful runs.
- Record upgrades in a short changelog section.
Reset Rule
If dependency conflicts stack up, create a fresh environment instead of patching repeatedly.