ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

I followed a tutorial and it works for me! The turorial is in another language though^^

For your convenience, the main procedure is :

  1. Install the dependency by

    sudo apt install build-essential automake libtool libfreetype6-dev libfreeimage-dev libzzip-dev libxrandr-dev libxaw7-dev freeglut3-dev libgl1-mesa-dev libglu1-mesa-dev libpoco-dev libtbb-dev doxygen libcppunit-dev

  2. Download _orge v1.8_ source code and complie.
    cd ogre mkdir build && cd build cmake .. make sudo make install

Solutions to other installation errors for Kinetic on pi 4 could be available in the same tutorial.

I followed a tutorial and it works for me! The turorial is in another language though^^

For your convenience, the main procedure is :

  1. Install the dependency by

    sudo apt install build-essential automake libtool libfreetype6-dev libfreeimage-dev libzzip-dev libxrandr-dev libxaw7-dev freeglut3-dev libgl1-mesa-dev libglu1-mesa-dev libpoco-dev libtbb-dev doxygen libcppunit-dev

  2. Download _orge v1.8_ source code and complie.

    $ cd ogre
    cd ogre $ mkdir build && cd build
    $ cmake ..
    $ make
    $ sudo make install

Solutions to other installation errors for Kinetic on pi 4 could be available in the same tutorial.

I followed a tutorial and it works for me! The turorial is in another language though^^

For your convenience, the main procedure is :

  1. Install the dependency by

    sudo apt install build-essential automake libtool libfreetype6-dev libfreeimage-dev libzzip-dev libxrandr-dev libxaw7-dev freeglut3-dev libgl1-mesa-dev libglu1-mesa-dev libpoco-dev libtbb-dev doxygen libcppunit-dev

  2. Download _orge v1.8_ source code and complie.

    $ cd ogre
    $ mkdir build && cd build
    $ cmake ..
    $ make
    $ sudo make install

If you are using gcc-8 you might need to set to former version using:

cmake -DCMAKE_CXX_FLAGS="--std=gnu++98" ..

Solutions to other installation errors for Kinetic on pi 4 could be available in the same tutorial.