You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Franky is based on [libfranka](https://github.com/frankaemika/libfranka), [Eigen](https://eigen.tuxfamily.org) for transformation calculations and [pybind11](https://github.com/pybind/pybind11) for the Python bindings.
112
-
Franky uses the [Ruckig](https://ruckig.com) Community Version for Online Trajectory Generation (OTG).
113
-
As the Franka is quite sensitive to acceleration discontinuities, it requires constrained jerk for all motions.
114
-
After installing the dependencies (the exact versions can be found below), you can build and install franky via
112
+
As the Franka is sensitive to acceleration discontinuities, it requires jerk-constrained motion generation, for which franky uses the [Ruckig](https://ruckig.com) community version for Online Trajectory Generation (OTG).
115
113
114
+
After installing the dependencies (the exact versions can be found [here](#development)), you can build and install franky via
To use franky, you can also include it as a subproject in your parent CMake via `add_subdirectory(franky)` and then `target_link_libraries(<target> libfranky)`. If you need only the Python module, you can install franky via
125
+
To use franky, you can also include it as a subproject in your parent CMake via `add_subdirectory(franky)` and then `target_link_libraries(<target> libfranky)`.
127
126
127
+
If you need only the Python module, you can install franky via
128
128
```bash
129
129
pip install .
130
130
```
131
-
132
-
Make sure that the built library can be found from Python by adapting your Python Path.
131
+
Make sure that the built library `_franky.cpython-3**-****-linux-gnu.so` is in the Python path, e.g. by adjusting `PYTHONPATH` accordingly.
133
132
134
133
135
134
#### Using Docker
@@ -563,6 +562,7 @@ Franky is written in C++17 and Python3.7. It is currently tested against followi
0 commit comments