These instructions are for installing only Ignition Plugin. 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.
Ubuntu
Prerequisites
Ignition Plugin version 1 requires Ubuntu Bionic, while version 0 can be used with Ubuntu Xenial.
If you don't already have the lsb-release
package installed, please do so now:
Setup your computer to accept software from packages.osrfoundation.org:
Setup keys:
Binary Installation
On Ubuntu systems, apt-get
can be used to install ignition-plugin
:
Source Installation
- Install required Ignition dependencies sudo apt-get install libignition-cmake2-dev
- Install Ignition Tools if you want to use the
ign plugin
command line tool:sudo apt-get install ignition-tools2. Clone the repository```bashgit clone https://github.com/ignitionrobotics/ign-plugin - Configure and build cd ign-pluginmkdir buildcd buildcmake ..make
- Optionally, install sudo make install
macOS
Prerequisites
Ignition Plugin and several of its dependencies can be installed on macOS with Homebrew using the osrf/simulation tap. Ignition Plugin version 1 requires macOS High Sierra (10.13) or later, while version 0 supports Sierra (10.12) or later.
Binary Installation
- Install Homebrew, which should also prompt you to install the XCode command-line tools ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- Run the following commands brew tap osrf/simulationbrew install ignition-plugin1
Source Installation
- Install dependencies brew tap osrf/simulationbrew install ignition-plugin1 --only-dependencies
- Clone the repository git clone https://github.com/ignitionrobotics/ign-plugin
- Configure and build cd ign-pluginmkdir buildcd buildcmake ..make
- Optionally, install sudo make install
Windows
Prerequisites
First, follow the ign-cmake tutorial for installing Conda, Visual Studio, CMake, and other prerequisites, and also for 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
).
Create if necessary, and activate a Conda environment:
Binary Installation
Be sure to replace <#>
with a number value, such as 2 or 3, depending on which version you need.
Source Installation
This assumes you have created and activated a Conda environment while installing the Prerequisites.
Install Ignition dependencies:
You can view available versions and their dependencies:
conda search libignition-plugin* --channel conda-forge --infoInstall dependencies, replacing
<#>
with the desired version:conda install libignition-cmake<#> --channel conda-forge- Navigate to where you would like to build the library, and clone the repository. # Optionally, append `-b ign-plugin#` (replace # with a number) to check out a specific versiongit clone https://github.com/ignitionrobotics/ign-plugin
- Configure and build cd ign-pluginmkdir buildcd buildcmake .. -DBUILD_TESTING=OFF # Optionally, -DCMAKE_INSTALL_PREFIX=path\to\installcmake --build . --config Release
- Optionally, install cmake --install . --config Release
Documentation
API documentation and tutorials can be accessed at Ignition Robotics website
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/ignitionrobotics/ign-plugin
- Configure and build the documentation. cd ign-pluginmkdir buildcd buildcmake ..make doc
- View the documentation by running the following command from the
build
directory.firefox doxygen/html/index.html
Note Alternatively, documentation for ignition-plugin
can be found within the source code, and also in the MIGRATION.md guide.
Test
Run tests as follows:
Tests are automatically built. To disable them, run cmake
as follows:
Test coverage
To run test coverage:
- Install LCOV
- Build with coverage
- Run tests make test
- Generate coverage make coverage
- View results firefox coverage/index.html