6.4.1 Install the Supporting Packages on Linux
Instructions for installing the supporting packages on Linux.
For Linux, Verify Cairo and png Dependencies
The Cairo
and png
packages require the
presence of these operating system dependencies:
Cairo
requires thecairo-devel
package.png
requires thelibpng-devel
package.
To verify the presence of these dependencies, do the following.
- Run the following commands:
$ rpm -qa libpng-devel $ rpm -qa cairo-devel
If the RPMs are installed, then the name of the RPM is returned.
$ rpm -qa cairo-devel cairo-devel-1.15.12-3.el7.x86_64 $ rpm -qa libpng-devel libpng-devel-1.5.13-7.el7_2.x86_64
- If that output is not returned, the RPMs are not installed. To install them, run the following commands as root:
$ yum install cairo-devel $ yum install libpng-devel
Parent topic: Install the OML4R Supporting Packages