Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 1.35 KB

dextra-yarp-devices-install.md

File metadata and controls

26 lines (20 loc) · 1.35 KB

Installation from Source Code

First install the dependencies:

Components with known additional/specific dependencies

Installation (Ubuntu)

Once the required dependencies have been installed, the code has to be compiled and installed. Note that you will be prompted for your password upon using sudo a couple of times:

cd  # go home
mkdir -p repos; cd repos  # make $HOME/repos if it doesn't exist; then, enter it
git clone https://github.com/roboticslab-uc3m/dextra-yarp-devices.git  # Download yarp-devices software from the repository
cd dextra-yarp-devices; mkdir build; cd build; cmake ..  # Configure the dextra-yarp-devices software
make -j$(nproc)  # Compile
sudo make install  # Install :-)
sudo ldconfig  # Just in case

For additional options use ccmake instead of cmake.