@reflex-dev/setup-python-env

@reflex-dev/setup-python-env — AI coding skill

View in AI SkillSafe app
0 downloads
0 stars
0 demos
SKILL.md
namesetup-python-env
description>

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

If no .venv exists, determine which tools are available.

Option A: uv is available

Check if uv is installed:

uv --version

If uv is found:

  1. If no pyproject.toml exists, initialize one:

    uv init --bare
    
  2. Create the virtual environment:

    uv venv .venv
    
  3. Activate it:

    source .venv/bin/activate
    

Skip to Step 3.

Option B: Fall back to python / pip

If uv is not available, check the Python version:

python3 --version

If the version is older than 3.10, stop and inform the user:

Python 3.10 or newer is required. Please install a more up-to-date version of Python before continuing.

If the version is 3.10 or newer:

  1. Create the virtual environment:

    python3 -m venv .venv
    
  2. Activate it:

    source .venv/bin/activate
    
  3. Upgrade pip:

    pip install --upgrade pip
    

Step 3: Install Reflex

Check if Reflex is already installed:

pip show reflex 2>/dev/null

If Reflex is not installed:

If using uv:

uv add reflex

If using pip:

pip install reflex

Embed badges

Add these to your README to show the skill's verification status.

SkillSafe verified badge
Verified badge
[![SkillSafe verified badge](https://api.skillsafe.ai/v1/badge/@reflex-dev/setup-python-env/verified)](https://skillsafe.ai/skill/@reflex-dev/setup-python-env/)
Installs badge
Installs badge
[![Installs badge](https://api.skillsafe.ai/v1/badge/@reflex-dev/setup-python-env/installs)](https://skillsafe.ai/skill/@reflex-dev/setup-python-env/)
Scan badge
Scan badge
[![Scan badge](https://api.skillsafe.ai/v1/badge/@reflex-dev/setup-python-env/scan)](https://skillsafe.ai/skill/@reflex-dev/setup-python-env/)
Eval pass rate badge
Eval pass rate
[![Eval pass rate badge](https://api.skillsafe.ai/v1/badge/@reflex-dev/setup-python-env/eval)](https://skillsafe.ai/skill/@reflex-dev/setup-python-env/)