Project Setup (Python)
When to Use
Use this skill when the user asks to create a new Python project, set up ovrtx in Python, create a pyproject.toml, or scaffold a Python app.
Inputs
Resolve inputs in this order: existing repository files and referenced snippets, explicit user request, then broader agent context.
- Project language, package manager, build system, and target platform from the user request.
- Whether the project should use packaged ovrtx or the local dev-mode build.
- Repository source snippets and example projects referenced below. Treat these snippets as the API source of truth.
Prerequisites
- Use an ovrtx checkout that contains the referenced examples and docs tests.
- Confirm Python, CMake, compiler, and package-index requirements before giving setup commands.
- Avoid modifying tracked dependency files unless the user explicitly asks for project scaffolding changes.
Instructions
- Identify the requested project type, platform, package source, and expected run command.
- Read the minimal example and setup snippets before writing scaffolding.
- Use the repository's existing Python or CMake conventions instead of inventing a new layout.
- Include renderer creation and first-frame validation only after the project dependency setup is complete.
- When changing code, run the narrow example setup or docs test whenever practical.
Output Format
- For explanations, cite the relevant API names, source snippets, and caveats.
- For code changes, summarize the files changed, snippets affected, and validation run.
Scripts
This skill has no scripts.
Limitations
- The referenced snippets remain the source of truth; update or add tested snippets before documenting new API usage.
Overview
ovrtx and ovstage are distributed as Python packages on PyPI. Use uv when you want project and dependency management. This skill scaffolds the current attached-stage workflow with both packages. ovstage remains optional for standalone compatibility code.
Project Structure
my-ovrtx-app/
pyproject.toml
main.py
Setup with uv (Recommended)
mkdir my-ovrtx-app && cd my-ovrtx-app
uv init
uv add ovrtx ovstage
This creates a pyproject.toml and uv.lock. Then add numpy (required for array/tensor operations):
uv add numpy
The resulting pyproject.toml will look like:
[project]
name = "my-ovrtx-app"
version = "0.1.0"
requires-python = ">=3.10,<3.14"
dependencies = [
"ovrtx",
"ovstage",
"numpy",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
Adding optional dependencies
For image output:
uv add pillow
For GPU compute with Warp:
uv add warp-lang
For visualization with rerun:
uv add rerun-sdk
Setup with pip
pip install ovrtx ovstage
Minimal main.py
Source: examples/python/minimal/main.py snippet create-renderer
Source (continued): examples/python/minimal/main.py snippet add-usd
Source (continued): examples/python/minimal/main.py snippet step
Source (continued): examples/python/minimal/main.py snippet read-render-output
ovrtx and ovstage Load Order
Importing the modules does not load either OpenUSD-dependent runtime. Two flows
are supported:
- Renderer first (the minimal example):
ovrtx.Renderer() opens the ovrtx
shared loader, registers schema paths, and loads the ovrtx runtime/OpenUSD.
ovstage.Stage() then opens the ovstage shared loader and loads the ovstage
runtime against that initialized OpenUSD.
- Stage first: call
ovrtx.register_schema_paths() before constructing the
first ovstage.Stage. Registration opens only the ovrtx shared loader and
publishes discovery paths. Stage construction then loads the ovstage runtime
and OpenUSD; later ovrtx.Renderer() loads the ovrtx runtime with the paths
already fixed.
Treat ovstage.library_version() as ovstage initialization for ordering
purposes because its version probe creates a temporary native instance. The
schema call must precede it in a stage-first process.
Run
uv run main.py --png
# or with pip-installed ovrtx and ovstage:
python main.py --png
A successful run writes _output/render.png. The output should match the documented minimal reference image.
Key Dependencies
| Package |
Purpose |
ovrtx |
Core renderer |
ovstage |
Runtime scene ownership for attached rendering |
pillow |
Image I/O (PNG, JPEG) |
numpy |
Array manipulation, DLPack interop |
warp-lang |
GPU compute kernels |
rerun-sdk |
Real-time visualization |
Troubleshooting
- If
uv is missing (uv: command not found), install uv before using the recommended setup commands, or translate the dependency steps to an equivalent pip/virtualenv workflow. PyPI is still the package source.
- ovrtx supports Python 3.10-3.13. If install resolution fails, no matching wheel is found, or imports fail on another Python version, recreate the environment with a supported interpreter (
uv python install 3.13 and uv python pin 3.13, or a virtualenv using Python 3.10-3.13). Do not work around unsupported interpreters by editing ovrtx dependency constraints.
- If package installation fails (
uv add ovrtx ovstage or pip install ovrtx ovstage for attached mode), classify the failure before treating it as an ovrtx issue: resolver or no matching distribution errors usually indicate an unsupported Python version or platform; connection, TLS, timeout, or index errors usually indicate PyPI/network/proxy access; wheel download or install errors may require checking the target platform tag. PyPI is the recommended package source. GitHub Releases contain Python wheels for explicit release-artifact installs, not normal consumption. Do not edit ovrtx constraints to force unsupported interpreters or platforms. If both PyPI and an explicit release wheel fail, report the exact Python version, OS/architecture, platform tag, command, and full error.
- If
pytest fails before test assertions because ovrtx cannot load libovrtx-dynamic.so, ovrtx-dynamic.dll, or required runtime directories, classify it as a package/runtime layout issue rather than a test failure. If pytest reaches runtime validation and fails because the host lacks an RTX GPU, a supported driver, unsandboxed execution, or internet access for remote S3 assets, report the missing prerequisite explicitly. Do not treat import-only, docs-only, or prerequisite-blocked pytest runs as successful runtime validation.
- ovrtx runtime validation requires an NVIDIA RTX-capable GPU and a supported NVIDIA driver. If no RTX GPU is visible, rerun validation outside the sandbox. If no RTX GPU is still visible, stop runtime validation and tell the user they need an RTX GPU.
- Supported NVIDIA driver versions are listed in
docs/driver_requirements.rst. Use that page as the ovrtx source of truth for runtime validation. If driver detection fails, the driver is inaccessible, or the detected version is older than the listed baseline for the host OS, GPU generation, and GPU type, rerun validation outside the sandbox. If the driver is still missing or incompatible, stop runtime validation and tell the user they need a supported NVIDIA driver.
- Run ovrtx-related runtime code outside sandboxed environments.
- Examples that load remote S3 assets require internet access.
- The first step from a newly built application will block for 1-2 minutes while shaders are compiled and cached. Wait at least 5 minutes before treating this as a failure.
- USD files can be loaded from local paths,
file:// URIs, or https:// URLs.
Standalone Compatibility (ovrtx 0.4)
The scaffold above follows the current attached-stage workflow. ovstage can be
omitted when maintaining standalone compatibility code, but the renderer-owned
scene APIs used by that mode are deprecated as scene ownership transitions
entirely to ovstage in a future release:
dependencies = [
"ovrtx>=0.4",
"ovstage>=0.1",
]
See docs/core/ovstage_integration.rst for the attached-mode overview.
References
- Use the
> **Source:** directives in this skill to locate tested snippets before reusing API patterns.
- Keep related skills, docs, and snippets synchronized when changing the workflow.
1---2name: project-setup-python3description: Setting up a new Python project that uses ovrtx. Use when user asks to create a new Python project, set up ovrtx in Python, create a pyproject.toml, or scaffold a Python app.4license: LicenseRef-NvidiaProprietary5---67# Project Setup (Python)89## When to Use1011Use this skill when the user asks to create a new Python project, set up ovrtx in Python, create a pyproject.toml, or scaffold a Python app.1213## Inputs1415Resolve inputs in this order: existing repository files and referenced snippets, explicit user request, then broader agent context.1617- Project language, package manager, build system, and target platform from the user request.18- Whether the project should use packaged ovrtx or the local dev-mode build.19- Repository source snippets and example projects referenced below. Treat these snippets as the API source of truth.2021## Prerequisites2223- Use an ovrtx checkout that contains the referenced examples and docs tests.24- Confirm Python, CMake, compiler, and package-index requirements before giving setup commands.25- Avoid modifying tracked dependency files unless the user explicitly asks for project scaffolding changes.2627## Instructions28291. Identify the requested project type, platform, package source, and expected run command.302. Read the minimal example and setup snippets before writing scaffolding.313. Use the repository's existing Python or CMake conventions instead of inventing a new layout.324. Include renderer creation and first-frame validation only after the project dependency setup is complete.335. When changing code, run the narrow example setup or docs test whenever practical.3435## Output Format3637- For explanations, cite the relevant API names, source snippets, and caveats.38- For code changes, summarize the files changed, snippets affected, and validation run.3940## Scripts4142This skill has no scripts.4344## Limitations4546- The referenced snippets remain the source of truth; update or add tested snippets before documenting new API usage.4748## Overview4950ovrtx and ovstage are distributed as Python packages on PyPI. Use `uv` when you want project and dependency management. This skill scaffolds the current attached-stage workflow with both packages. ovstage remains optional for standalone compatibility code.5152## Project Structure5354```55my-ovrtx-app/56 pyproject.toml57 main.py58```5960## Setup with uv (Recommended)6162```bash63mkdir my-ovrtx-app && cd my-ovrtx-app64uv init65uv add ovrtx ovstage66```6768This creates a `pyproject.toml` and `uv.lock`. Then add `numpy` (required for array/tensor operations):6970```bash71uv add numpy72```7374The resulting `pyproject.toml` will look like:7576```toml77[project]78name = "my-ovrtx-app"79version = "0.1.0"80requires-python = ">=3.10,<3.14"81dependencies = [82 "ovrtx",83 "ovstage",84 "numpy",85]8687[build-system]88requires = ["hatchling"]89build-backend = "hatchling.build"90```9192### Adding optional dependencies9394For image output:9596```bash97uv add pillow98```99100For GPU compute with Warp:101102```bash103uv add warp-lang104```105106For visualization with rerun:107108```bash109uv add rerun-sdk110```111112## Setup with pip113114```bash115pip install ovrtx ovstage116```117118## Minimal main.py119120> **Source:** `examples/python/minimal/main.py` snippet `create-renderer`121>122> **Source (continued):** `examples/python/minimal/main.py` snippet `add-usd`123>124> **Source (continued):** `examples/python/minimal/main.py` snippet `step`125>126> **Source (continued):** `examples/python/minimal/main.py` snippet `read-render-output`127128## ovrtx and ovstage Load Order129130Importing the modules does not load either OpenUSD-dependent runtime. Two flows131are supported:132133- **Renderer first (the minimal example):** `ovrtx.Renderer()` opens the ovrtx134 shared loader, registers schema paths, and loads the ovrtx runtime/OpenUSD.135 `ovstage.Stage()` then opens the ovstage shared loader and loads the ovstage136 runtime against that initialized OpenUSD.137- **Stage first:** call `ovrtx.register_schema_paths()` before constructing the138 first `ovstage.Stage`. Registration opens only the ovrtx shared loader and139 publishes discovery paths. Stage construction then loads the ovstage runtime140 and OpenUSD; later `ovrtx.Renderer()` loads the ovrtx runtime with the paths141 already fixed.142143Treat `ovstage.library_version()` as ovstage initialization for ordering144purposes because its version probe creates a temporary native instance. The145schema call must precede it in a stage-first process.146147### Run148149```bash150uv run main.py --png151# or with pip-installed ovrtx and ovstage:152python main.py --png153```154155A successful run writes `_output/render.png`. The output should match the documented minimal reference image.156157## Key Dependencies158159| Package | Purpose |160|---------|---------|161| `ovrtx` | Core renderer |162| `ovstage` | Runtime scene ownership for attached rendering |163| `pillow` | Image I/O (PNG, JPEG) |164| `numpy` | Array manipulation, DLPack interop |165| `warp-lang` | GPU compute kernels |166| `rerun-sdk` | Real-time visualization |167168## Troubleshooting169170- If `uv` is missing (`uv: command not found`), install `uv` before using the recommended setup commands, or translate the dependency steps to an equivalent `pip`/virtualenv workflow. PyPI is still the package source.171- ovrtx supports Python 3.10-3.13. If install resolution fails, no matching wheel is found, or imports fail on another Python version, recreate the environment with a supported interpreter (`uv python install 3.13` and `uv python pin 3.13`, or a virtualenv using Python 3.10-3.13). Do not work around unsupported interpreters by editing ovrtx dependency constraints.172- If package installation fails (`uv add ovrtx ovstage` or `pip install ovrtx ovstage` for attached mode), classify the failure before treating it as an ovrtx issue: resolver or `no matching distribution` errors usually indicate an unsupported Python version or platform; connection, TLS, timeout, or index errors usually indicate PyPI/network/proxy access; wheel download or install errors may require checking the target platform tag. PyPI is the recommended package source. GitHub Releases contain Python wheels for explicit release-artifact installs, not normal consumption. Do not edit ovrtx constraints to force unsupported interpreters or platforms. If both PyPI and an explicit release wheel fail, report the exact Python version, OS/architecture, platform tag, command, and full error.173- If `pytest` fails before test assertions because ovrtx cannot load `libovrtx-dynamic.so`, `ovrtx-dynamic.dll`, or required runtime directories, classify it as a package/runtime layout issue rather than a test failure. If pytest reaches runtime validation and fails because the host lacks an RTX GPU, a supported driver, unsandboxed execution, or internet access for remote S3 assets, report the missing prerequisite explicitly. Do not treat import-only, docs-only, or prerequisite-blocked pytest runs as successful runtime validation.174- ovrtx runtime validation requires an NVIDIA RTX-capable GPU and a supported NVIDIA driver. If no RTX GPU is visible, rerun validation outside the sandbox. If no RTX GPU is still visible, stop runtime validation and tell the user they need an RTX GPU.175- Supported NVIDIA driver versions are listed in `docs/driver_requirements.rst`. Use that page as the ovrtx source of truth for runtime validation. If driver detection fails, the driver is inaccessible, or the detected version is older than the listed baseline for the host OS, GPU generation, and GPU type, rerun validation outside the sandbox. If the driver is still missing or incompatible, stop runtime validation and tell the user they need a supported NVIDIA driver.176- Run ovrtx-related runtime code outside sandboxed environments.177- Examples that load remote S3 assets require internet access.178- The first step from a newly built application will block for 1-2 minutes while shaders are compiled and cached. Wait at least 5 minutes before treating this as a failure.179- USD files can be loaded from local paths, `file://` URIs, or `https://` URLs.180181## Standalone Compatibility (ovrtx 0.4)182183The scaffold above follows the current attached-stage workflow. ovstage can be184omitted when maintaining standalone compatibility code, but the renderer-owned185scene APIs used by that mode are deprecated as scene ownership transitions186entirely to ovstage in a future release:187188```toml189dependencies = [190 "ovrtx>=0.4",191 "ovstage>=0.1",192]193```194195See `docs/core/ovstage_integration.rst` for the attached-mode overview.196197## References198199- Use the `> **Source:**` directives in this skill to locate tested snippets before reusing API patterns.200- Keep related skills, docs, and snippets synchronized when changing the workflow.