Skip to content

Commit

Permalink
Add DART install manual
Browse files Browse the repository at this point in the history
  • Loading branch information
lsw9021 committed Dec 30, 2019
1 parent 1c23e76 commit 8a18433
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 8a18433

Please sign in to comment.