/install python3
Python
Use this skill to keep Python workflows reproducible and low-risk across local/dev shells.
Safety Defaults
- Prefer project-local virtual environments (
.venv) over global installs. - Prefer
python3 -m pip ...to avoid interpreter and pip mismatch. - Inspect dependency files before install (
requirements*.txt,pyproject.toml). - Avoid executing unknown setup hooks or random install scripts without user approval.
Standard Workflow
- Detect current environment:
python3 --version
python3 -c "import sys; print(sys.executable)"
{baseDir}/scripts/python_env_tool.py doctor
- Create or refresh a venv:
{baseDir}/scripts/python_env_tool.py bootstrap --venv .venv --requirements requirements.txt
- Install project package (if
pyproject.tomlexists):
{baseDir}/scripts/python_env_tool.py install --venv .venv --editable
- Run tests/tools from the venv interpreter:
.venv/bin/python -m pytest -q
.venv/bin/python -m pip list --outdated
Task Recipes
# Install specific packages into venv
{baseDir}/scripts/python_env_tool.py install --venv .venv --package requests --package pydantic
# Install from requirements file
{baseDir}/scripts/python_env_tool.py install --venv .venv --requirements requirements-dev.txt
# Recreate corrupted venv from scratch
{baseDir}/scripts/python_env_tool.py bootstrap --venv .venv --recreate --requirements requirements.txt
Troubleshooting Rules
ModuleNotFoundError: verify command is run via.venv/bin/python, then reinstall deps.externally-managed-environment: stop global install attempts; use venv.- Build failures on native deps: upgrade
pip setuptools wheel, then retry. - Multiple Python versions: always print and confirm
sys.executablebefore fixes.
Bundled Helper
Use the helper for repeatable environment setup and diagnosis:
{baseDir}/scripts/python_env_tool.py --help
{baseDir}/scripts/python_env_tool.py doctor
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install python3 - After installation, invoke the skill by name or use
/python3 - Provide required inputs per the skill's parameter spec and get structured output
What is python?
Use Python for practical project setup, dependency install, script execution, and environment troubleshooting with safe defaults. Use when tasks involve pypr... It is an AI Agent Skill for Claude Code / OpenClaw, with 1042 downloads so far.
How do I install python?
Run "/install python3" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is python free?
Yes, python is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does python support?
python is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created python?
It is built and maintained by jvy (@jvy); the current version is v1.0.0.