Skip to content

Commit

Permalink
Create install_kdl.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Raúl de Santos authored Nov 28, 2016
1 parent da2cd29 commit e17c6c3
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions install_kdl.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## Install KDL (Ubuntu 14.10)

We use KDL for kinematics. Official download page: [link](http://www.orocos.org/kdl). </br>
Installing KDL on Ubuntu is quite straightforward. Note that you will be prompted for your password upon using '''sudo''' a couple of times:

```bash
sudo apt-get install libeigen3-dev
cd # go home
mkdir -p repos; cd repos # make $HOME/repos if it doesn't exist; then, enter it
git clone https://github.com/orocos/orocos_kinematics_dynamics.git
cd orocos_kinematics_dynamics/orocos_kdl; mkdir build; cd build
cmake ..
make -j3; sudo make install; sudo ldconfig; cd # go home
```

0 comments on commit e17c6c3

Please sign in to comment.