\page install Installation
Next Tutorial: \ref cppgetstarted
These instructions are for installing only Gazebo Messages. If you're interested in using all the Ignition libraries, check out this Ignition installation.
We recommend following the Binary Installation instructions to get up and running as quickly and painlessly as possible.
The Source Installation instructions should be used if you need the very latest software improvements, you need to modify the code, or you plan to make a contribution.
On Ubuntu systems, apt-get can be used to install ignition-msgs:
sudo apt install libignition-msgs<#>-dev
Be sure to replace <#> with a number value, such as 2 or 3, depending on
which version you need.
On macOS, add OSRF packages:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew tap osrf/simulation
Install Gazebo Msgs:
brew install ignition-msgs<#>
Be sure to replace <#> with a number value, such as 1 or 2, depending on
which version you need.
Install Conda package management system. Miniconda suffices.
Create if necessary, and activate a Conda environment:
conda create -n gz-ws
conda activate gz-ws
Install ignition-msgs:
conda install libignition-msgs<#> --channel conda-forge
Be sure to replace <#> with a number value, such as 2 or 3, depending on
which version you need.
Install required dependencies as follows:
sudo apt-get install libprotobuf-dev protobuf-compiler libprotoc-dev libignition-math7-dev
Standard installation can be performed in UNIX systems using the following steps:
mkdir build/
cd build/
cmake ..
sudo make install
To uninstall the software installed with the previous steps:
cd build/
sudo make uninstall
- Clone the repository
git clone https://github.com/gazebosim/gz-msgs -b ign-msgs<#>
Be sure to replace <#> with a number value, such as 1 or 2, depending on
which version you need.
- Install dependencies
brew install --only-dependencies ignition-msgs<#>
Be sure to replace <#> with a number value, such as 1 or 2, depending on
which version you need.
- Configure and build
cd ign-msgs
mkdir build
cd build
cmake ..
make
- Optionally, install
sudo make install
To uninstall the software installed with the previous steps:
cd build/
sudo make uninstall
First, follow the ign-cmake tutorial for installing Conda, Visual Studio, CMake, etc., prerequisites, and creating a Conda environment.
Navigate to condabin if necessary to use the conda command (i.e., if Conda is not in your PATH environment variable. You can find the location of condabin in Anaconda Prompt, where conda).
Activate the Conda environment:
conda activate gz-ws
Install prerequisites:
conda install tinyxml2 protobuf --channel conda-forge
Install Ignition dependencies:
You can view lists of dependencies:
conda search libignition-msgs* --channel conda-forge --info
Install dependencies, replacing <#> with the desired versions:
conda install libignition-cmake<#> libignition-math<#> libignition-tools<#> --channel conda-forge
This assumes you have created and activated a Conda environment while installing the Prerequisites.
- Navigate to where you would like to build the library, and clone the repository.
# Optionally, append `-b ign-msgs#` (replace # with a number) to check out a specific version
git clone https://github.com/gazebosim/gz-msgs.git
- Configure and build
cd ign-msgs
mkdir build
cd build
cmake .. -DBUILD_TESTING=OFF # Optionally, -DCMAKE_INSTALL_PREFIX=path\to\install
cmake --build . --config Release
- Optionally, install
cmake --install . --config Release
API documentation and tutorials can be accessed at https://gazebosim.org/libs/cmake
You can also generate the documentation from a clone of this repository by following these steps.
- You will need Doxygen. On Ubuntu Doxygen can be installed using
sudo apt-get install doxygen
- Clone the repository
git clone https://github.com/gazebosim/gz-cmake
- Configure and build the documentation.
cd ign-cmake
mkdir build
cd build
cmake ..
make doc
- View the documentation by running the following command from the
builddirectory.
firefox doxygen/html/index.html
- Upload documentation to gazebosim.org.
cd build
sh upload.sh
- If you're creating a new release, then tell gazebosim.org about the new version. For example:
curl -k -X POST -d '{"libName":"msgs", "version":"1.0.0", "releaseDate":"2017-10-09T12:10:13+02:00","password":"secret"}' https://api .gazebosim.org/1.0/versions
Run tests as follows:
make test
Tests are automatically built. To disable them, run cmake as follows:
cmake .. -DENABLE_TESTS_COMPILATION=false
To run test coverage:
- Install LCOV
sudo apt-get install lcov
- Build with coverage
cd build/
cmake .. -DCMAKE_BUILD_TYPE=coverage
make
- Run tests
make test
- Generate coverage
make coverage
- View results
firefox coverage/index.html
See the Writing Tests section of the Ignition documentation for help creating or modifying tests.