加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
rbdl_installation.md 512 Bytes
一键复制 编辑 原始数据 按行查看 历史

RBDL Installation

  1. Install the necessary dependencies:
sudo apt update && sudo apt install git-core cmake libeigen3-dev build-essential
  1. Clone and build the project
git clone --recursive https://github.com/rbdl/rbdl
mkdir -p rbdl/build && cd rbdl/build
cmake -D CMAKE_BUILD_TYPE=Release ..
make
sudo make install
  1. Add the RBDL library path to the environment variables
echo "export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH" >> ~/.bashrc
source ~/.bashrc
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化