python

star 2

Guidelines for Python development, including environment setup and dependency management.

andrewhowdencom By andrewhowdencom schedule Updated 2/17/2026

name: python description: Guidelines for Python development, including environment setup and dependency management.

Python

Virtual Environment

Ensure you are working within a virtual environment.

Check if .venv/bin/activate exists. If not, initialize it:

python3 -m venv .venv

Activate the environment:

source .venv/bin/activate

Dependencies

If the project uses pip for dependency management (indicated by setup.py or pyproject.toml), install the package in editable mode to test changes:

pip install -e .
Install via CLI
npx skills add https://github.com/andrewhowdencom/.agents --skill python
Repository Details
star Stars 2
call_split Forks 2
navigation Branch main
article Path SKILL.md
More from Creator
andrewhowdencom
andrewhowdencom Explore all skills →