https://github.com/advrhumanoids/pykyon
https://github.com/advrhumanoids/pykyon
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/advrhumanoids/pykyon
- Owner: ADVRHumanoids
- Created: 2025-04-01T10:08:12.000Z (2 months ago)
- Default Branch: master
- Last Pushed: 2025-04-01T10:58:32.000Z (2 months ago)
- Last Synced: 2025-04-01T11:35:20.114Z (2 months ago)
- Language: Python
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python package for Kyon robot description
This repository repackages the kyon repository into a pip-installable package. Making it installable via pip
and findable with python utilities.
You can find an example of how to do so in `src/pykyon/xacro_compile_example.py`.As this is a repo containing a git submodule, clone with:
```
git clone --recurse-submodules
```You can test that everything works with `src/pykyon/xacro_compile_example.py`.
To run the script you will need to install pykyon with pip and to install adarl (just for a couple of helper
functions, no need to install its full depenndencies).
You can install pykyon either directly from pip (using the git repo) or by cloning it and installing it in editable mode:
I suggest you do all of this in a virtual environment.```
pip install -e pykyon
```You can install some basic dependencies with:
```
pip install -r pykyon/requirements.txt
```