User Tools

Site Tools


getting_started:install_wrapper

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
getting_started:install_wrapper [2017/11/21 21:35] – [flink] grafgetting_started:install_wrapper [2017/11/21 21:43] – [comedi] graf
Line 62: Line 62:
  
 ===== Beagle Bone blue ===== ===== Beagle Bone blue =====
-http://flink-project.ch/+Follow the installation instructions in [[http://www.strawsondesign.com/#!manual-install]] to install the roboticscape library. 
 +Clone the eeros bbblue wrapper source repository: 
 +<code> 
 +$ git clone https://github.com/eeros-project/bbblue-eeros.git 
 +</code> 
 + 
 +Checkout a stable version of the wrapper: 
 +<code> 
 +$ cd bbblue-eeros 
 +$ git checkout master 
 +</code> 
 + 
 +Compile to a custom folder: 
 +<code> 
 +$ mkdir build-x86-64 
 +$ cd build-x86-64 
 +$ cmake -DCMAKE_INSTALL_PREFIX=/absolute/path/to/working/directory/install-x86-64 .. 
 +$ make 
 +</code> 
 + 
 +Finally you have to install the library so that your system will find it at runtime. Depending on your system this could be: 
 +<code> 
 +$ sudo cp lib/libbbblueeeros.so /usr/lib 
 +</code> 
 +Or you could add the directory to your library path with 
 +<code> 
 +$ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/absolute/path/to/compiled/lib/ 
 +</code> 
 + 
 +===== comedi ===== 
 +Follow the installation instructions in [[http://www.comedi.org/]] to install the comedi library. 
 +Clone the eeros comedi wrapper source repository: 
 +<code> 
 +$ git clone https://github.com/eeros-project/comedi-eeros.git 
 +</code> 
 + 
 +Checkout a stable version of the wrapper: 
 +<code> 
 +$ cd comedi-eeros 
 +$ git checkout master 
 +</code> 
 + 
 +Compile to a custom folder: 
 +<code> 
 +$ mkdir build-x86-64 
 +$ cd build-x86-64 
 +$ cmake -DCMAKE_INSTALL_PREFIX=/absolute/path/to/working/directory/install-x86-64 .. 
 +$ make 
 +</code> 
 + 
 +Finally you have to install the library so that your system will find it at runtime. Depending on your system this could be: 
 +<code> 
 +$ sudo cp lib/libcomedieeros.so /usr/lib 
 +</code> 
 +Or you could add the directory to your library path with 
 +<code> 
 +$ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/absolute/path/to/compiled/lib/ 
 +</code> 
 + 
 +===== ROS ===== 
 +Follow the installation instructions in [[http://www.ros.org/]] to install ROS. 
 +Clone the eeros ROS wrapper source repository: 
 +<code> 
 +$ git clone https://github.com/eeros-project/ros-eeros.git 
 +</code> 
 + 
 +Checkout a stable version of the wrapper: 
 +<code> 
 +$ cd ros-eeros 
 +$ git checkout master 
 +</code> 
 + 
 +Compile to a custom folder: 
 +<code> 
 +$ mkdir build-x86-64 
 +$ cd build-x86-64 
 +$ cmake -DCMAKE_INSTALL_PREFIX=/absolute/path/to/working/directory/install-x86-64 .. 
 +$ make 
 +</code> 
 + 
 +Finally you have to install the library so that your system will find it at runtime. Depending on your system this could be: 
 +<code> 
 +$ sudo cp lib/libroseeros.so /usr/lib 
 +</code> 
 +Or you could add the directory to your library path with 
 +<code> 
 +$ export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/absolute/path/to/compiled/lib/ 
 +</code>
getting_started/install_wrapper.txt · Last modified: 2024/06/13 13:50 by ursgraf