Skip to main content

Python and CLI preview — 3D viewer

One Python package provides a browser viewer for local 3D files and point arrays, plus the ply-viewer command. Python 3.10+ and a WebGL-capable browser are required. There are no Python runtime dependencies; NumPy arrays work without requiring NumPy for users who only open files. Node.js is needed only to build the bundled viewer from this repository, not to use an installed wheel.

Install the Python package from PyPI as ply-visualizer. The npm package is not published.

Install with uv (recommended)

Install uv first. For source development, use this repository or a locally built wheel. From the repository root, build the browser assets using Node 24:

npm ci
npm run build:python-viewer

CLI only

For occasional use, run the local package in an isolated tool environment:

uvx --from ./packages/python ply-viewer engine/examples/example-point-cloud.ply

For regular use, install its command persistently:

uv tool install ./packages/python
ply-viewer scan.ply

If uv reports that its executable directory is missing from PATH, run uv tool update-shell and restart your shell. Tool installation makes the CLI available, but does not add ply_visualizer to your Python project or notebook kernel. uv tools guide.

Python and local Jupyter notebooks

For an existing uv-managed Python project, add the built local package from that project's directory (replace the path with your checkout location):

uv add /absolute/path/to/ply-visualizer/packages/python
uv run --with jupyter jupyter lab

Choose the kernel using that project's environment. Then a notebook cell can run from ply_visualizer import show. The viewer opens in a separate browser tab; keep the kernel running. NumPy and PyTorch stay optional: use the versions already installed in your project, or add them as needed. uv Jupyter guide.

For a virtual environment without uv project management, from this repository:

# Create this environment only if it does not already exist.
uv venv packages/python/.venv
uv pip install --python packages/python/.venv ./packages/python
packages/python/.venv/bin/ply-viewer engine/examples/example-point-cloud.ply

For notebooks in that environment, install JupyterLab into the same environment and launch it directly:

uv pip install --python packages/python/.venv jupyterlab
packages/python/.venv/bin/jupyter lab

Installing a wheel

A wheel already contains the viewer assets and needs no Node.js build:

# CLI only:
uv tool install /path/to/ply_visualizer-0.1.0-py3-none-any.whl
# Or, from a uv-managed Python project:
uv add /path/to/ply_visualizer-0.1.0-py3-none-any.whl

Public PyPI installation

The public package name is ply-visualizer:

uv add ply-visualizer            # Python project
uv add "ply-visualizer[notebook]" # Notebook display support
uv pip install ply-visualizer    # Existing virtual environment
uv tool install ply-visualizer   # Isolated CLI installation
uvx --from ply-visualizer ply-viewer scan.ply

The Python import remains from ply_visualizer import show. See publishing setup for the release workflow.

Alternative: install with pip from this repository

After building the browser assets above:

python3 -m venv packages/python/.venv
packages/python/.venv/bin/python -m pip install ./packages/python
packages/python/.venv/bin/ply-viewer engine/examples/example-point-cloud.ply

On Windows, replace the environment's bin/ paths with Scripts/, e.g. packages\python\.venv\Scripts\python.exe, ply-viewer.exe, or jupyter.exe. After activating the environment, the command is simply:

ply-viewer scan.ply mesh.stl
ply-viewer --no-browser scan.ply
python -m ply_visualizer scan.ply

The command prints a local URL and keeps running until Ctrl+C. --no-browser allows an agent or another application to open that URL itself. It does not render an image or report successful browser rendering to the caller.

Python

from ply_visualizer import show

# In an interactive Python session or local notebook:
viewer = show("scan.ply", "mesh.stl")
print(viewer.url)
# Later:
viewer.close()
from ply_visualizer import show

# Lists, iterables, NumPy arrays, and PyTorch tensors with shape (N, 3) work.
points = [[0, 0, 0], [1, 0, 0], [0, 1, 0]]
colors = [[255, 0, 0], [0, 255, 0], [0, 0, 255]]

# In a script, keep Python alive while the viewer is in use.
with show(points, colors=colors) as viewer:
    print(viewer.url)
    try:
        viewer.wait()
    except KeyboardInterrupt:
        pass

Coordinates must be finite float32-compatible numbers. Optional colors must match the point count and contain integer RGB values in 0..255. Point arrays are serialized to a temporary binary PLY, decoded by the existing engine, and removed when the session closes. This first implementation serializes arrays row by row; it is not a zero-copy transport for very large arrays.

NumPy and PyTorch

Pass arrays and tensors directly, including RGB colors:

import numpy as np
from ply_visualizer import show

viewer = show(np.random.default_rng(0).normal(size=(1000, 3)))
import torch
from ply_visualizer import show

device = "cuda" if torch.cuda.is_available() else (
    "mps" if torch.backends.mps.is_available() else "cpu"
)
points = torch.randn(1000, 3, device=device, requires_grad=True)
rgb = torch.randint(0, 256, (1000, 3), device=device, dtype=torch.uint8)
viewer = show(points, colors=rgb)
# No manual .detach(), .cpu(), or .numpy() needed.
# Keep Python alive and call viewer.close() when finished.
  • NumPy arrays can be transposed, sliced, read-only, or non-contiguous.
  • PyTorch inputs can be CPU or GPU tensors, detached or attached to autograd. Both coordinates and colors are handled independently, so mixing devices or NumPy/PyTorch inputs works. Float16 and bfloat16 tensors are supported.
  • Visualization detaches internally, transfers to CPU, and serializes a snapshot. The original device, values, requires_grad, and autograd graph are unchanged. GPU-to-CPU transfer synchronizes; avoid calling this every training step.
  • PyTorch conversion does not depend on NumPy. CPU rows are converted in bounded chunks rather than performing a GPU scalar read for every coordinate.
  • Inputs must be real, dense (N, 3) data. For (B, N, 3) batches, use show(batch[0]); batches are deliberately not flattened automatically. Sparse, quantized, complex, nested, and data-free meta tensors are rejected with an error. RGB retains the integer-valued 0..255 convention, including floating-point tensors; normalized RGB can be passed as (rgb * 255).round().

Training previews

All updates reuse the same browser tab/inline view and preserve its camera. The viewer polls for the newest revision every 500 ms; intermediate revisions can be skipped. Publish at a useful training interval, not every forward pass. Serialization and GPU transfer are synchronous. Updates replace the scene; manual files added to that scene are also replaced on the next update.

viewer = show(initial_points)

# In your training loop, e.g. every 100 steps:
if step % 100 == 0:
    viewer.update(prediction[0], target=target[0], step=step)

Prediction is orange and target cyan. Supply colors= to override prediction RGB. Targets may have a different number of points. This is a geometric overlay, not a computed nearest-neighbor error metric. Visibility can be toggled in the standard file panel. Use Pause updates to inspect one revision and Fit scene to reset the framing explicitly.

Batch and augmentation inspection

from ply_visualizer import show_batch

viewer = show_batch(batch, target=target_batch)
viewer.update_batch(next_batch, target=next_targets, step=step)

# A list of differently sized point arrays also works:
viewer = show_batch([original, augmented], labels=["Original", "Augmented"])

The sample selector switches batches in one scene and retains the camera. Colors, targets, and vectors (when supplied) must match the batch size. Batch snapshots serialize every sample; select a small inspection subset for large training batches. Only the chosen sample is loaded by the browser.

Gradient and displacement arrows

# After loss.backward(); non-leaf predictions need retain_grad() beforehand.
viewer.update(
    points,
    vectors=points.grad,
    vector_scale=-learning_rate,
    max_vectors=256,
    step=step,
)

Arrows are anchored at the corresponding input points. Negative learning-rate scaling shows a plain gradient-descent direction; it is not an exact Adam or momentum optimizer step. To inspect the actual update, pass measured coordinate displacements instead. Nonzero arrows are magenta. Up to max_vectors evenly spaced vectors are displayed (default 256, maximum 2000). All supplied vector rows are validated; no autograd hooks or gradient computation are installed by this operation.

Layer inspection with a removable forward hook

viewer = show(initial_points)
with viewer.inspect_layer(model, select=lambda output: output[0], every=100):
    train(model)

For dictionary outputs use a selector such as lambda output: output["points"][0]. The selector must return (N, 3) coordinates, not arbitrary feature channels. The hook captures the first forward call and then every every calls. It returns None, preserving the model's output. A visualization error disables the hook, emits a warning and is accessible as inspection.error; it does not invalidate training. The context manager removes the hook, while the caller owns the viewer session's lifetime. inspection.close() also removes it explicitly.

Run viewer updates in the main process, on one rank in distributed training, and outside compiled model code. GPU-to-CPU transfer introduces synchronization. PyTorch forward hooks.

The server binds only to 127.0.0.1, uses a random session URL, and serves only the explicitly supplied files and bundled viewer assets. Source files remain on your machine; the package does not upload them. Keep file paths available for the life of the session. Do not share the session URL with untrusted code.

Inline Jupyter notebooks

In a local Jupyter notebook, return the viewer as the last expression in a cell. Browser auto-opening is disabled when a notebook kernel is detected:

viewer = show(points)
viewer  # Interactive viewer appears in the output cell.

Or display explicitly, using the notebook extra:

viewer.display(height=480, ui="collapsed")

Settings are collapsed by default. A compact toolbar keeps Settings, Fit scene, Pause updates, and the batch selector accessible. Choose ui="full" to show settings immediately or ui="none" for a presentation-only canvas with mouse controls. In UI-free mode, batch selection is unavailable; choose the sample in Python before displaying it.

viewer.update(...) updates every open view, including notebook output. Keep the kernel running, call viewer.close() when done, and do not call viewer.wait() in a cell. Notebook output contains a live local iframe, not an offline saved scene. Reopen the session after restarting the kernel.

This initial inline transport requires the browser and kernel on the same machine and a notebook host that permits local iframes. Remote Jupyter, Colab, and notebook environments that block local iframe URLs need a widget/proxy transport; they are not supported by this transport yet.

For a mature widget-based alternative, K3D supports notebook point clouds and other 3D primitives. Rerun is worth considering for recorded, time-based diagnostics. This package embeds the existing 3D viewer to retain its file formats and interaction controls.

Current scope

  • Supported inputs: PLY, XYZ, XYZN, XYZRGB, PCD, PTS, OBJ, STL, OFF, GLB, LAS/LAZ, E57, SPZ, SPLAT, KSPLAT, and SOG.
  • Multiple files appear together in one scene.
  • OBJ input currently provides geometry; automatic sidecar material/texture resolution and external-resource glTF are outside this preview.
  • No separate image-viewer integration, MCP tools, headless capture, or desktop launch integration yet. The shared 3D viewer retains its existing manual controls and depth-conversion features.

Build a distributable wheel

npm run build:python-viewer
packages/python/.venv/bin/python -m pip wheel --no-deps ./packages/python --wheel-dir /tmp/ply-viewer-wheels

The wheel includes the browser engine and its assets. Install that wheel on another machine with python -m pip install /path/to/the.whl; no Node.js or Tauri installation is necessary there. Build assets before packaging.

Verify

npm run test:python-viewer
# Also test actual NumPy/PyTorch inputs in the isolated environment:
packages/python/.venv/bin/python -m pip install numpy torch
packages/python/.venv/bin/python -m unittest discover -s packages/python/tests -v
cd engine
npx playwright test local-session.spec.ts --reporter=line

The browser test requires npm run build:python-viewer and the existing engine test server assets in engine/dist (npm run build --workspace=engine). Array tests skip optional libraries and GPU backends that are unavailable.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ply_visualizer-0.1.0.tar.gz (8.4 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ply_visualizer-0.1.0-py3-none-any.whl (8.4 MB view details)

Uploaded Python 3

File details

Details for the file ply_visualizer-0.1.0.tar.gz.

File metadata

  • Download URL: ply_visualizer-0.1.0.tar.gz
  • Upload date:
  • Size: 8.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.14.5

File hashes

Hashes for ply_visualizer-0.1.0.tar.gz
Algorithm Hash digest
SHA256 d4bca336a29e0f1e5fb1afd3c857c807128ce9bab7e6931337a6ab7e747caa00
MD5 2bd74722a4e9338dc90626ee7280f6d7
BLAKE2b-256 e4c7047b6022ec14d618bec7c36dcf015603539137db87710fb329734a44c3c3

See more details on using hashes here.

File details

Details for the file ply_visualizer-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: ply_visualizer-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 8.4 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.14.5

File hashes

Hashes for ply_visualizer-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 35e318a437cb77e730ab3479bb6852f1f6dc88aa0471637bb4394641ab975fe5
MD5 3e820e5fdcb432210e7e511676eb13bb
BLAKE2b-256 f076f4fa762b4555d6c3799483bbc7a81e62c864492b7f6480c723aec62f7721

See more details on using hashes here.

Release history Release notifications | RSS feed

0.4.1

2 files

0.4.0

2 files

0.3.0

2 files

0.2.0

2 files

This release

0.1.0 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page