Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ https://github.com/user-attachments/assets/b8bb78de-866e-4ba2-b5c7-674e3a33dd9e

```bash
# Desktop app (GUI + 3D visualization)
pip install caliscope[gui]
uv pip install caliscope[gui]

# Library only (scripting, CI, servers — no PySide6/VTK)
pip install caliscope
# Library only (scripting, CI, servers — no GUI dependencies)
uv pip install caliscope
```

Full installation instructions are in the [docs](https://mprib.github.io/caliscope/installation/).
Expand Down Expand Up @@ -60,9 +60,9 @@ The aniposelib-compatible export makes it straightforward to use Caliscope for c

## Scripting API

The standard install (`pip install caliscope`) exposes intrinsic and extrinsic camera calibration as importable Python functions. Rich progress bars appear automatically; pass `progress=None` for silent operation.
The standard install (`uv pip install caliscope`) exposes intrinsic and extrinsic camera calibration as importable Python functions. Rich progress bars appear automatically; pass `progress=None` for silent operation.

For the desktop app with 3D visualization: `pip install caliscope[gui]`
For the desktop app with 3D visualization: `uv pip install caliscope[gui]`

See the [Scripting API docs](https://mprib.github.io/caliscope/scripting/) and `scripts/demo_api.py` for examples.

Expand Down
6 changes: 0 additions & 6 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,12 +48,6 @@ We strongly advise installing Caliscope within a virtual environment to avoid co
=== "macOS"

```bash
# Note that there are some environment variables that must be set on macOS
# to ensure everything works:
export MKL_NUM_THREADS=1
export NUMEXPR_NUM_THREADS=1
export OMP_NUM_THREADS=1

# Navigate to the directory that will hold your project
cd path/to/your/project

Expand Down
Loading