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
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -122,3 +122,8 @@ traj.csv

results/
_codeql_detected_source_root

# Generated by scripts/bootstrap_mujoco_models.py
models/mujoco/unitree_a1
models/mujoco/unitree_g1
models/mujoco/boston_dynamics_spot
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,18 @@ To compile and install the GTDynamics python library:
make && make python-install
```

To generate stubs explicitly (useful for IDEs/type checkers), run:

```sh
make python-stubs
```

On non-Windows platforms, `python-install` depends on `python-stubs`.

For VS Code / Pylance setup (including `python.analysis.extraPaths`), see `python/README.md`.

Important: use a `gtsam` Python package built from the same install/prefix as the GTSAM library linked into GTDynamics. Mixing a local GTDynamics build with an unrelated pip/conda `gtsam` wheel can cause runtime aborts.

4. To run the Python tests, you can simply run:

```sh
Expand Down
Loading
Loading