limxsdk-lowlevel
Dependency-free C++11 & Python SDK for low-level motion control of LimX robots — cross-platform (Linux x86_64/aarch64, Windows), integrates with ROS/Gazebo and RL-based sim-to-real deployment.
파일 탐색기
- ipconfig.png
- plotjuggler.gif
- rviz.gif
- simulator.gif
- util.cpp
- util.h
- CMakeLists.txt
- pf_controller_base.cpp
- pf_controller_base.h
- pf_groupJoints_move.cpp
- pf_joint_move.cpp
- ability_manager.h
- base_ability.h
- plugin_loader.h
- plugin_registry.h
- rate.h
- robot_data.h
- yaml_config_parser.h
- apibase.h
- centaur.h
- datatypes.h
- humanoid.h
- macros.h
- pointfoot.h
- tron2.h
- wheellegged.h
- liblimxsdk_lowlevel.so
- liblimxsdk_lowlevel.so
- liblimxsdk_lowlevel.so
- limxsdk_lowlevel.dll
- limxsdk_lowlevel.lib
- limxsdk-4.0.2-py3-none-any.whl
- limxsdk-4.0.2-py3-none-any.whl
- abilities.yaml
- dummy1.py
- dummy2.py
- example_centaur.py
- example_humanoid.py
- example_tron1.py
- example_tron2.py
- example_tron2_gripper.py
- limxsdk-3.4.2-py3-none-any.whl
- .gitignore
- CMakeLists.txt
- LICENSE
- package.xml
- README.md
- README_cn.md
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
cmake
설명 보기 ▼
cmake
네이티브 빌드 시스템을 위한 빌드 설정 파일을 생성하는, 크로스 플랫폼 빌드 자동화 도구.
더 많은 정보: <https://cmake.org/cmake/help/latest/manual/cmake.1.html>.
cmake {{path/to/project_directory}}
프로젝트 디렉터리의 `CMakeLists.txt`를 사용해 현재 디렉터리에 빌드 설정을 생성:
cmake --build {{path/to/build_directory}}
지정한 디렉터리의 빌드 설정을 사용해 빌드 산출물을 생성:
cmake --install {{path/to/build_directory}} --strip
빌드 산출물을 `/usr/local/`에 설치하고 디버그 심볼을 제거:
git clone
설명 보기 ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
pip install
설명 보기 ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
apt-get
설명 보기 ▼
apt-get
Debian 및 Ubuntu 패키지 관리 도구.
`apt-cache`를 사용하여 패키지를 검색하세요.
Ubuntu 16.04 이후 버전에서는 대화형 사용 시 `apt` 사용을 권장합니다.
더 많은 정보: <https://manned.org/apt-get.8>.
sudo apt-get update
사용 가능한 패키지 및 버전 목록 업데이트 (다른 `apt-get` 명령어 실행 전에 권장됨):
sudo apt-get install {{package}}
패키지 설치 또는 최신 버전으로 업데이트:
sudo apt-get remove {{package}}
패키지 제거:
apt install
설명 보기 ▼
apt install
Install packages for Debian-based distributions.
sudo apt install {{package}}
Install a package, or update it to the latest version:
sudo apt install {{[-V|--verbose-versions]}} {{package}}
Display verbose package version information during installation or update:
