From 8a1843331c9218d516a851e7524d07c19d81dab7 Mon Sep 17 00:00:00 2001 From: seunghwan Date: Mon, 30 Dec 2019 14:36:41 +0900 Subject: [PATCH] Add DART install manual --- README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/README.md b/README.md index 664cc88..6ca7ddb 100644 --- a/README.md +++ b/README.md @@ -63,6 +63,27 @@ Please refer to http://dartsim.github.io/ (Install version 6.3) If you are trying to use latest version, rendering codes should be changed according to the version. It is recommended to use the exact 6.3 version. +Manual from DART(http://dartsim.github.io/install_dart_on_ubuntu.html) +1. install required dependencies + +```bash +sudo apt-get install build-essential cmake pkg-config git +sudo apt-get install libeigen3-dev libassimp-dev libccd-dev libfcl-dev libboost-regex-dev libboost-system-dev +sudo apt-get install libopenscenegraph-dev +``` +2. install DART v6.3.0 + +```bash +git clone git://github.com/dartsim/dart.git +cd dart +git checkout tags/v6.3.0 +mkdir build +cd build +cmake .. +make -j4 +sudo make install +``` + ### Install PIP things You should first activate virtualenv.