Skip to content

Latest commit

 

History

History
30 lines (23 loc) · 1.8 KB

asibot-main-install.md

File metadata and controls

30 lines (23 loc) · 1.8 KB

Simulation and Basic Control: Installation from Source Code

First install the dependencies:

Additionally, this project depends on YCM to download and build external packages. Although this process is intended to run automatically during the CMake configuration phase, you may still want to install YCM and said packages by yourself. In that respect, refer to Install YCM and to the installation guides of any package listed below:

Install the Simulation and Basic Control Software

Our software integrates the previous dependencies. 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 does not exist; then, enter it
git clone https://github.com/roboticslab-uc3m/asibot-main.git  # download asibot-main software from the repository
cd asibot-main; mkdir build; cd build
cmake ..
make -j$(nproc); sudo make install; cd  # go home

For additional options, use ccmake instead of cmake.