python-env
Installation
SKILL.md
Python Environment Management
Virtual environments, dependency management, and Python version control.
venv (Built-in)
# Create virtual environment
python -m venv .venv
python3 -m venv .venv
# Activate
source .venv/bin/activate # Linux/macOS
.venv\Scripts\activate # Windows
# Deactivate
deactivate