setup-python-env
Installation
SKILL.md
Python Environment Setup for Reflex
This skill handles creating a Python virtual environment and installing Reflex.
Step 1: Check for an existing virtual environment
Look for a .venv directory in the project root:
ls -d .venv 2>/dev/null
If .venv exists, activate it and skip to Step 3.
source .venv/bin/activate
Step 2: Create the virtual environment
Related skills